V-ART
memoryobj.h
Go to the documentation of this file.
1 
5 #ifndef VART_MEMORYOBJ_H
6 #define VART_MEMORYOBJ_H
7 
8 namespace VART {
27  class MemoryObj {
28  public:
33  MemoryObj();
34 
39  MemoryObj(const VART::MemoryObj& obj);
40  bool autoDelete;
41  }; // end class declaration
42 } // end namespace
43 
44 #endif
MemoryObj()
Default constructor.
Definition: memoryobj.cpp:10
A "Memory Object" is a V-ART object that has some memory allocation attributes, allowing V-ART to aut...
Definition: memoryobj.h:27