]> git.lyx.org Git - lyx.git/blobdiff - src/exporter.h
more cursor dispatch
[lyx.git] / src / exporter.h
index 02afbfcfca96849ad364c45a9b8dd799b1a81c61..826ce82addbed93bbc99ccca5073a310ed37a58a 100644 (file)
@@ -13,8 +13,9 @@
 #ifndef EXPORTER_H
 #define EXPORTER_H
 
+#include <string>
 #include <vector>
-#include "support/std_string.h"
+
 
 class Buffer;
 class Format;
@@ -23,18 +24,18 @@ 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