diff options
Diffstat (limited to 'Sencha-lang/Object.h')
-rw-r--r-- | Sencha-lang/Object.h | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/Sencha-lang/Object.h b/Sencha-lang/Object.h deleted file mode 100644 index 563cf7d..0000000 --- a/Sencha-lang/Object.h +++ /dev/null @@ -1,21 +0,0 @@ -#ifndef OBJECT_H
-#define OBJECT_H
-#include <string>
-//I don't know how should it look like!
-class Object
-{
- public:
- Object();
- virtual ~Object(); - //Representation of the object - std::string str(); - //Type - std::string type(); - //Possible values - double number_value; - std::string characters;
- protected:
- private:
-};
-
-#endif // OBJECT_H
|