pmc/include/object.h
changeset 54 c064ce9f40f5
parent 42 83b8151b966d
--- a/pmc/include/object.h
+++ b/pmc/include/object.h
@@ -8,13 +8,17 @@
 
 #include <string>
 
+extern int refCounter;
+
 class Object {
   protected:
     std::string name;
 
   public:
     virtual ~ Object ();
+
     virtual std::string getName ();
     virtual Object getClass ();
+    int getInstances ();
 };
 #endif