lua console and some changes

This commit is contained in:
Eduardo Bart
2011-08-20 17:30:41 -03:00
parent 033f14780d
commit 38529ea837
70 changed files with 672 additions and 305 deletions

View File

@@ -6,7 +6,6 @@
class OTMLDocument : public OTMLNode
{
public:
OTMLDocument() { }
virtual ~OTMLDocument() { }
/// Create a new OTML document for filling it with nodes
@@ -24,6 +23,9 @@ public:
/// Save this document to a file
bool save(const std::string& fileName);
private:
OTMLDocument() { }
};
#endif