]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/DEVEL/mathml_editor/src/AMathMLFactory.hh
debian release 0.4.1-1
[helm.git] / helm / DEVEL / mathml_editor / src / AMathMLFactory.hh
index a514e9453b349faec9a9399831a215b0cab3e43b..92c1eb4093930e39cb69d7fc256eeebc6e6844f5 100644 (file)
@@ -29,8 +29,7 @@
 class AMathMLFactory
 {
 public:
-  AMathMLFactory(class ALogger& l) : logger(l), consumer(0) { };
-  AMathMLFactory(class ALogger& l, class AMathMLConsumer& c) : logger(l), consumer(&c) { };
+  AMathMLFactory(class ALogger& l) : logger(l) { };
   virtual ~AMathMLFactory() { };
 
   virtual void documentModified(class TDocument&) = 0;
@@ -38,7 +37,6 @@ public:
 
 protected:
   class ALogger& logger;
-  class AMathMLConsumer* consumer;
 };
 
 #endif // __AMathMLFactory_hh__