]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/DEVEL/mathml_editor/src/ITPushLexer.hh
Added the completion of the macro's name.
[helm.git] / helm / DEVEL / mathml_editor / src / ITPushLexer.hh
diff --git a/helm/DEVEL/mathml_editor/src/ITPushLexer.hh b/helm/DEVEL/mathml_editor/src/ITPushLexer.hh
new file mode 100644 (file)
index 0000000..5b5ace3
--- /dev/null
@@ -0,0 +1,20 @@
+
+#ifndef __ITPushLexer_hh__
+#define __ITPushLexer_hh__
+
+#include <string>
+
+#include "TPushLexer.hh"
+
+class ITPushLexer : public TPushLexer
+{
+public:
+  ITPushLexer(class ALogger&, class APushParser&, class TDictionary&);
+  ~ITPushLexer(void) { };
+
+  virtual bool complete(void);
+private:  
+  class TDictionary& dictionary;
+};
+
+#endif