Add NULL_VECTOR

This commit is contained in:
Valentin Grünbacher
2015-05-06 11:28:54 +02:00
parent 39cc240a4e
commit fdb180e062
6 changed files with 27 additions and 3 deletions

View File

@@ -62,6 +62,7 @@ public:
bool m_Debug;
cell* m_pNullStringOfs;
cell* m_pNullVectorOfs;
public:
inline const char* getName() { return name.c_str();}
inline const char* getVersion() { return version.c_str();}
@@ -92,6 +93,7 @@ public:
const char* getStatus() const;
inline bool isDebug() const { return m_Debug; }
inline cell* getNullStringOfs() const { return m_pNullStringOfs; }
inline cell* getNullVectorOfs() const { return m_pNullVectorOfs; }
};
private: