]> git.lyx.org Git - lyx.git/blobdiff - src/exporter.h
more cursor dispatch
[lyx.git] / src / exporter.h
index 64db46612ae9cd3eb8302238a0316bf04f4a599e..826ce82addbed93bbc99ccca5073a310ed37a58a 100644 (file)
@@ -13,8 +13,9 @@
 #ifndef EXPORTER_H
 #define EXPORTER_H
 
+#include <string>
 #include <vector>
-#include "LString.h"
+
 
 class Buffer;
 class Format;
@@ -23,22 +24,22 @@ class Exporter {
 public:
        ///
        static
-       bool Export(Buffer * buffer, string const & format,
-                   bool put_in_tempdir, string & result_file);
+       bool Export(Buffer * buffer, std::string const & format,
+                   bool put_in_tempdir, std::string & result_file);
        ///
        static
-       bool Export(Buffer * buffer, string const & format,
+       bool Export(Buffer * buffer, std::string const & format,
                    bool put_in_tempdir);
        ///
        static
-       bool Preview(Buffer * buffer, string const & format);
+       bool Preview(Buffer * buffer, std::string const & format);
        ///
        static
-       bool IsExportable(Buffer const * buffer, string const & format);
+       bool IsExportable(Buffer const & buffer, std::string const & format);
        ///
        static
        std::vector<Format const *> const
-       GetExportableFormats(Buffer const * buffer, bool only_viewable);
+       GetExportableFormats(Buffer const & buffer, bool only_viewable);
        ///
 };
 #endif