]> git.lyx.org Git - lyx.git/blobdiff - src/importer.h
hopefully fix tex2lyx linking.
[lyx.git] / src / importer.h
index b63358de30346277b8b5b1d19bf31a8c8cc50589..8791434719be801193b88ef3f47626b0d1a955cb 100644 (file)
@@ -18,6 +18,8 @@
 #include <vector>
 
 
+namespace lyx {
+
 class LyXView;
 class ErrorList;
 class Format;
@@ -25,16 +27,16 @@ class Format;
 class Importer {
 public:
        ///
-       static
-       bool Import(LyXView * lv, std::string const & filename,
+       static bool Import(LyXView * lv, std::string const & filename,
                    std::string const & format, ErrorList & errorList);
 
        ///
-       static
-       std::vector<Format const *> const GetImportableFormats();
+       static std::vector<Format const *> const GetImportableFormats();
 private:
        ///
-       static
-       std::vector<std::string> const Loaders();
+       static std::vector<std::string> const Loaders();
 };
+
+} // namespace lyx
+
 #endif