]> git.lyx.org Git - lyx.git/blobdiff - src/exporter.h
move some selection related stuff over to textcursor.C
[lyx.git] / src / exporter.h
index 76a3257ea88d134a5933ce85cabc6d5c7f00b689..12ccebd4da664501533eade75c31bd6140177c64 100644 (file)
@@ -1,26 +1,22 @@
 // -*- C++ -*-
 /* This file is part of
- * ====================================================== 
- * 
+ * ======================================================
+ *
  *           LyX, The Document Processor
- *        
+ *
  *           Copyright 1995 Matthias Ettrich
- *           Copyright 1995-2000 The LyX Team.
+ *           Copyright 1995-2001 The LyX Team.
  *
  * ====================================================== */
 
 #ifndef EXPORTER_H
 #define EXPORTER_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
-
 #include <vector>
 #include "LString.h"
 
 class Buffer;
-class FormatPair;
+class Format;
 
 class Exporter {
 public:
@@ -40,12 +36,8 @@ 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);
        ///
-       
-       ///
-       static
-       string const BufferFormat(Buffer const * buffer);
 };
 #endif