|
@@ -14,6 +14,26 @@
|
|
|
TypeHandle EggAttributes::_type_handle;
|
|
TypeHandle EggAttributes::_type_handle;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
+////////////////////////////////////////////////////////////////////
|
|
|
|
|
+// Function: EggAttributes::Constructor
|
|
|
|
|
+// Access: Public
|
|
|
|
|
+// Description:
|
|
|
|
|
+////////////////////////////////////////////////////////////////////
|
|
|
|
|
+EggAttributes::
|
|
|
|
|
+EggAttributes() {
|
|
|
|
|
+ _flags = 0;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+////////////////////////////////////////////////////////////////////
|
|
|
|
|
+// Function: EggAttributes::Copy constructor
|
|
|
|
|
+// Access: Public
|
|
|
|
|
+// Description:
|
|
|
|
|
+////////////////////////////////////////////////////////////////////
|
|
|
|
|
+EggAttributes::
|
|
|
|
|
+EggAttributes(const EggAttributes ©) {
|
|
|
|
|
+ (*this) = copy;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
////////////////////////////////////////////////////////////////////
|
|
////////////////////////////////////////////////////////////////////
|
|
|
// Function: EggAttributes::Copy assignment operator
|
|
// Function: EggAttributes::Copy assignment operator
|
|
|
// Access: Public
|
|
// Access: Public
|
|
@@ -31,6 +51,15 @@ operator = (const EggAttributes ©) {
|
|
|
return *this;
|
|
return *this;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+////////////////////////////////////////////////////////////////////
|
|
|
|
|
+// Function: EggAttributes::Destructor
|
|
|
|
|
+// Access: Public, Virtual
|
|
|
|
|
+// Description:
|
|
|
|
|
+////////////////////////////////////////////////////////////////////
|
|
|
|
|
+EggAttributes::
|
|
|
|
|
+~EggAttributes() {
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
////////////////////////////////////////////////////////////////////
|
|
|
// Function: EggAttributes::write
|
|
// Function: EggAttributes::write
|