diff --git a/pmc/include/object.h b/pmc/include/object.h 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 - -extern int refCounter; - -class Object { - protected: - std::string name; - - public: - virtual ~ Object (); - - virtual std::string getName (); - virtual Object getClass (); - int getInstances (); -}; -#endif