]> git.lyx.org Git - lyx.git/blobdiff - src/exporter.h
John's Layout Tabular UI improvements and Martins fixes to clearing the
[lyx.git] / src / exporter.h
index 76a3257ea88d134a5933ce85cabc6d5c7f00b689..d1f3c8d6fde8251482da46ac177e376ffaa3644a 100644 (file)
@@ -5,7 +5,7 @@
  *           LyX, The Document Processor
  *        
  *           Copyright 1995 Matthias Ettrich
- *           Copyright 1995-2000 The LyX Team.
+ *           Copyright 1995-2001 The LyX Team.
  *
  * ====================================================== */
 
@@ -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