]> git.lyx.org Git - lyx.git/blobdiff - src/importer.h
hopefully fix tex2lyx linking.
[lyx.git] / src / importer.h
index 4eca7c06f9cd1db941dc073e953637de6c96b790..8791434719be801193b88ef3f47626b0d1a955cb 100644 (file)
 #ifndef IMPORTER_H
 #define IMPORTER_H
 
+#include <string>
 #include <vector>
-#include "LString.h"
+
+
+namespace lyx {
 
 class LyXView;
+class ErrorList;
 class Format;
 
 class Importer {
 public:
        ///
-       static
-       bool Import(LyXView * lv, string const & filename,
-                   string const & format);
+       static bool Import(LyXView * lv, std::string const & filename,
+                   std::string const & format, ErrorList & errorList);
 
        ///
-       static
-       std::vector<Format const *> const GetImportableFormats();
+       static std::vector<Format const *> const GetImportableFormats();
 private:
        ///
-       static
-       std::vector<string> const Loaders();
+       static std::vector<std::string> const Loaders();
 };
+
+} // namespace lyx
+
 #endif