]> git.lyx.org Git - lyx.git/blobdiff - src/importer.h
revert recent change to development/FORMAT (don't change history)
[lyx.git] / src / importer.h
index 0cd3e67fbd6d63619f0c3fbf8a34e154bd58f300..b63358de30346277b8b5b1d19bf31a8c8cc50589 100644 (file)
@@ -1,31 +1,33 @@
 // -*- 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
 
-#ifdef __GNUG__
-#pragma interface
-#endif
-
+#include <string>
 #include <vector>
-#include "LString.h"
+
 
 class LyXView;
+class ErrorList;
 class Format;
 
 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, ErrorList & errorList);
 
        ///
        static
@@ -33,6 +35,6 @@ public:
 private:
        ///
        static
-       std::vector<string> const Loaders();
+       std::vector<std::string> const Loaders();
 };
 #endif