]> git.lyx.org Git - lyx.git/blobdiff - src/exporter.h
* lyx_main.[Ch]
[lyx.git] / src / exporter.h
index cf6551ed87a662a995cea861ccfba6ec1f406474..ec1c9d6495fdbae61cce1e21eee08f82de6a42e8 100644 (file)
@@ -18,6 +18,9 @@
 #include <vector>
 
 
+namespace lyx {
+
+
 class Buffer;
 class Format;
 
@@ -33,14 +36,14 @@ public:
                    bool put_in_tempdir);
        ///
        static
-       bool Preview(Buffer * buffer, std::string const & format);
+       bool preview(Buffer * buffer, std::string const & format);
        ///
        static
-       bool IsExportable(Buffer const & buffer, std::string const & format);
+       bool isExportable(Buffer const & buffer, std::string const & format);
        ///
        static
        std::vector<Format const *> const
-       GetExportableFormats(Buffer const & buffer, bool only_viewable);
+       getExportableFormats(Buffer const & buffer, bool only_viewable);
        ///
 };
 
@@ -93,4 +96,7 @@ private:
        FileMap externalfiles;
 };
 
+
+} // namespace lyx
+
 #endif