]> git.lyx.org Git - features.git/blobdiff - src/exporter.h
Replace LString.h with support/std_string.h,
[features.git] / src / exporter.h
index 6d95507d59df8803bc23cf88c7bb803776078128..02afbfcfca96849ad364c45a9b8dd799b1a81c61 100644 (file)
@@ -1,23 +1,20 @@
 // -*- C++ -*-
-/* This file is part of
- * ====================================================== 
- * 
- *           LyX, The Document Processor
- *        
- *           Copyright 1995 Matthias Ettrich
- *           Copyright 1995-2000 The LyX Team.
+/**
+ * \file exporter.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- * ====================================================== */
+ * \author Lars Gullik Bjønnes
+ * \author Jean-Marc Lasgouttes
+ *
+ * Full author contact details are available in file CREDITS.
+ */
 
 #ifndef EXPORTER_H
 #define EXPORTER_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
-
 #include <vector>
-#include "LString.h"
+#include "support/std_string.h"
 
 class Buffer;
 class Format;
@@ -37,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);
+       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