a couple more fixes to self-memory-alignment
This commit is contained in:
parent
42e8f806f1
commit
f9240e0258
|
|
@ -34,7 +34,7 @@
|
|||
// appearances of the EggObject base class. And making
|
||||
// EggObject a virtual base class is just no fun.
|
||||
////////////////////////////////////////////////////////////////////
|
||||
class EXPCL_PANDAEGG EggAttributes {
|
||||
class EXPCL_PANDAEGG EggAttributes : public MemoryBase {
|
||||
PUBLISHED:
|
||||
EggAttributes();
|
||||
EggAttributes(const EggAttributes ©);
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@
|
|||
// The name is either empty or nonempty, but it is never
|
||||
// NULL.
|
||||
////////////////////////////////////////////////////////////////////
|
||||
class EXPCL_PANDAEXPRESS Namable {
|
||||
class EXPCL_PANDAEXPRESS Namable : public MemoryBase {
|
||||
PUBLISHED:
|
||||
INLINE Namable(const string &initial_name = "");
|
||||
INLINE Namable(const Namable ©);
|
||||
|
|
|
|||
|
|
@ -36,7 +36,7 @@ static const int DXF_num_colors = 256;
|
|||
// appropriate functions overridden (particularly
|
||||
// DoneEntity()).
|
||||
////////////////////////////////////////////////////////////////////
|
||||
class DXFFile {
|
||||
class DXFFile : public MemoryBase {
|
||||
public:
|
||||
DXFFile();
|
||||
virtual ~DXFFile();
|
||||
|
|
|
|||
Loading…
Reference in New Issue