]> git.lyx.org Git - lyx.git/blobdiff - src/exporter.h
character2.diff.gz
[lyx.git] / src / exporter.h
index 43a2ee2ef4c281806859140e40ce68a59704ed13..6d95507d59df8803bc23cf88c7bb803776078128 100644 (file)
@@ -20,7 +20,7 @@
 #include "LString.h"
 
 class Buffer;
-class FormatPair;
+class Format;
 
 class Exporter {
 public:
@@ -40,14 +40,14 @@ public:
        bool IsExportable(Buffer const * buffer, string const & format);
        ///
        static
-       std::vector<FormatPair> const
-       GetExportableFormats(Buffer const * buffer);
+       std::vector<Format const *> const
+       GetExportableFormats(Buffer const * buffer, bool only_viewable);
        ///
+private:
        static
-       std::vector<FormatPair> const
-       GetViewableFormats(Buffer const * buffer);
+       string const BufferFormat(Buffer const * buffer);
        ///
        static
-       string const BufferFormat(Buffer const * buffer);
+       std::vector<string> const Backends(Buffer const * buffer);
 };
 #endif