]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/DEVEL/mathml_editor/src/TDictionary.hh
Added some rules in the Right Drop section and in the Left Drop one.
[helm.git] / helm / DEVEL / mathml_editor / src / TDictionary.hh
index f3ad19dc144bc481ef51271d30c1808752edd76f..8807f83772e0e2076a86079b9d1ca12875ea25bc 100644 (file)
@@ -31,6 +31,7 @@
 #include <string>
 #include <vector>
 #include <hash_map>
+#include <list>
 
 #include "dom.hh"
 #include "TToken.hh"
@@ -83,10 +84,13 @@ public:
     unsigned table : 1;
   };
 
+  static std::string getDefaultDictionaryPath(void);
+
   void load(const std::string&);
   void load(const std::string&, const std::string&);
   void load(const DOM::Document&, const std::string& = "");
   const Entry& find(const std::string&) const;
+  std::string complete(const std::string, std::list<std::string>&) const;
 
 private:
   struct StringHash : public std::unary_function< std::string, size_t >