]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/DEVEL/mathml_editor/src/TObject.hh
* code cleanup
[helm.git] / helm / DEVEL / mathml_editor / src / TObject.hh
diff --git a/helm/DEVEL/mathml_editor/src/TObject.hh b/helm/DEVEL/mathml_editor/src/TObject.hh
deleted file mode 100644 (file)
index c4b4e9e..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-
-#ifndef __TObject_hh__
-#define __TObject_hh__
-
-class TObject
-{
-protected:
-  TObject(void) { refCounter = 1; };
-  virtual ~TObject() { };
-
-public:
-  void ref(coid) const { refCounter++; };
-  void unref(void) const { if (--refCounter) delete this; };
-};
-
-#endif // __TObject_hh__