pmc/include/object.h
changeset 65 76514757b0d6
parent 64 993b97c4ad2d
child 66 2b4f786d9073
deleted file mode 100644
--- a/pmc/include/object.h
+++ /dev/null
@@ -1,24 +0,0 @@
-/**
- * test/demos/pmc/include/object.h
- * Copyright (C) 2008 Markus Broeker
- */
-
-#ifndef OBJECT_H
-#define OBJECT_H
-
-#include <string>
-
-extern int refCounter;
-
-class Object {
-  protected:
-    std::string name;
-
-  public:
-    virtual ~ Object ();
-
-    virtual std::string getName ();
-    virtual Object getClass ();
-    int getInstances ();
-};
-#endif