]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/DEVEL/mathml_editor/src/APushParser.hh
Initial revision
[helm.git] / helm / DEVEL / mathml_editor / src / APushParser.hh
diff --git a/helm/DEVEL/mathml_editor/src/APushParser.hh b/helm/DEVEL/mathml_editor/src/APushParser.hh
new file mode 100644 (file)
index 0000000..c297810
--- /dev/null
@@ -0,0 +1,14 @@
+
+#ifndef __APushParser_hh__
+#define __APushParser_hh__
+
+class APushParser
+{
+public:
+  APushParser(void) { };
+  virtual ~APushParser() { };
+  virtual void push(const TToken&) = 0;
+  virtual void setCursor(const std::string&) = 0;
+};
+
+#endif // __APushParser_hh__