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