]> git.lyx.org Git - lyx.git/blobdiff - src/importer.h
get rid of broken_header.h and some unneeded tests
[lyx.git] / src / importer.h
index f00be23d410f77a77f92ca7d25dc3051b164db5b..7d62799cabd20e6034281f3c9069b3bdd7d1f55c 100644 (file)
@@ -1,17 +1,22 @@
 // -*- C++ -*-
 /**
  * \file importer.h
- * Copyright 1995-2002 the LyX Team
- * Read the file COPYING
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
  * \author unknown
+ * \author Jean-Marc Lasgouttes
+ * \author John Levon
+ *
+ * Full author contact details are available in file CREDITS.
  */
 
 #ifndef IMPORTER_H
 #define IMPORTER_H
 
+#include <string>
 #include <vector>
-#include "LString.h"
+
 
 class LyXView;
 class Format;
@@ -20,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
@@ -29,6 +34,6 @@ public:
 private:
        ///
        static
-       std::vector<string> const Loaders();
+       std::vector<std::string> const Loaders();
 };
 #endif