]> git.lyx.org Git - lyx.git/blobdiff - src/importer.h
Partly fix for bug 1231
[lyx.git] / src / importer.h
index 4eca7c06f9cd1db941dc073e953637de6c96b790..7d62799cabd20e6034281f3c9069b3bdd7d1f55c 100644 (file)
@@ -14,8 +14,9 @@
 #ifndef IMPORTER_H
 #define IMPORTER_H
 
+#include <string>
 #include <vector>
-#include "LString.h"
+
 
 class LyXView;
 class Format;
@@ -24,8 +25,8 @@ class Importer {
 public:
        ///
        static
-       bool Import(LyXView * lv, string const & filename,
-                   string const & format);
+       bool Import(LyXView * lv, std::string const & filename,
+                   std::string const & format);
 
        ///
        static
@@ -33,6 +34,6 @@ public:
 private:
        ///
        static
-       std::vector<string> const Loaders();
+       std::vector<std::string> const Loaders();
 };
 #endif