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