]> git.lyx.org Git - lyx.git/blobdiff - src/exporter.h
Move #includes out of header files.
[lyx.git] / src / exporter.h
index f02e8472a00df54c53e2c2b3677fb38cce803de4..629d7f473f6e783603a428300363b4ba6ea5b5da 100644 (file)
@@ -1,13 +1,14 @@
 // -*- C++ -*-
-/* This file is part of
- * ======================================================
+/**
+ * \file exporter.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- *           LyX, The Document Processor
+ * \author Lars Gullik Bjønnes
+ * \author Jean-Marc Lasgouttes
  *
- *           Copyright 1995 Matthias Ettrich
- *           Copyright 1995-2001 The LyX Team.
- *
- * ====================================================== */
+ * Full author contact details are available in file CREDITS.
+ */
 
 #ifndef EXPORTER_H
 #define EXPORTER_H
@@ -33,17 +34,11 @@ public:
        bool Preview(Buffer * buffer, string const & format);
        ///
        static
-       bool IsExportable(Buffer const * buffer, string const & format);
+       bool IsExportable(Buffer const & buffer, string const & format);
        ///
        static
        std::vector<Format const *> const
-       GetExportableFormats(Buffer const * buffer, bool only_viewable);
-       ///
-private:
-       static
-       string const BufferFormat(Buffer const * buffer);
+       GetExportableFormats(Buffer const & buffer, bool only_viewable);
        ///
-       static
-       std::vector<string> const Backends(Buffer const * buffer);
 };
 #endif