summaryrefslogtreecommitdiffstats
path: root/Object.h
diff options
context:
space:
mode:
Diffstat (limited to 'Object.h')
-rw-r--r--Object.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/Object.h b/Object.h
new file mode 100644
index 0000000..bdec9ca
--- /dev/null
+++ b/Object.h
@@ -0,0 +1,18 @@
+#ifndef OBJECT_H_
+#define OBJECT_H_
+
+#include <cstring>
+
+
+class Object {
+ public:
+ virtual ~Object() {}
+
+ virtual const char* getType() const = 0;
+
+ bool isOfType(const char *type) const {
+ return (std::strcmp(getType(), type) == 0);
+ }
+};
+
+#endif /*OBJECT_H_*/