summaryrefslogtreecommitdiffstats
path: root/Object.h
diff options
context:
space:
mode:
authorneoraider <devnull@localhost>2008-04-06 15:29:03 +0200
committerneoraider <devnull@localhost>2008-04-06 15:29:03 +0200
commit356efaf89afdad141b313767e1a2b89de3c08d0a (patch)
tree37edb2a0fc0ea15f4f60e45ed411cbea7b4c12c5 /Object.h
parent258eb984bafe0f667d1e76de61c8afaa23f39ef4 (diff)
downloadzoomedit-356efaf89afdad141b313767e1a2b89de3c08d0a.tar
zoomedit-356efaf89afdad141b313767e1a2b89de3c08d0a.zip
zoomedit: Recreated ZoomEdit based on Glademm.
Diffstat (limited to 'Object.h')
-rw-r--r--Object.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/Object.h b/Object.h
deleted file mode 100644
index bdec9ca..0000000
--- a/Object.h
+++ /dev/null
@@ -1,18 +0,0 @@
-#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_*/