]> git.lyx.org Git - lyx.git/blobdiff - src/exporter.h
citation patch from Angus
[lyx.git] / src / exporter.h
index ce57770b2e041d8ba50248dd1678d9358b66f784..fb286f7a2d29b333633cc300a65185bbabe6246e 100644 (file)
@@ -21,6 +21,7 @@
 
 class Buffer;
 
+///
 class Exporter {
 public:
        ///
@@ -32,15 +33,17 @@ public:
        bool Preview(Buffer * buffer, string const & format);
        ///
        static
-       std::vector<std::pair<string, string> > GetExportableFormats(Buffer * buffer);
+       std::vector<std::pair<string, string> > const
+       GetExportableFormats(Buffer const * buffer);
        ///
        static
-       std::vector<std::pair<string, string> > GetViewableFormats(Buffer * buffer);
+       std::vector<std::pair<string, string> > const
+       GetViewableFormats(Buffer const * buffer);
        ///
        static
-       string BufferExtension(Buffer * buffer);
+       string const BufferExtension(Buffer const * buffer);
 };
 
-//#define NEW_EXPORT 1
+#define NEW_EXPORT 1
 
 #endif