]> git.lyx.org Git - lyx.git/blobdiff - src/lyx_main.h
fix "make dist" target
[lyx.git] / src / lyx_main.h
index 0ba6779ef7b787acbbba6e761e8aa6a55edb7d4f..1c836f6c93d2fb395671120bb7171218c93bc257 100644 (file)
@@ -22,7 +22,7 @@
 #include <csignal>
 
 #include "LString.h"
-#include "support/utility.hpp"
+#include <boost/utility.hpp>
 
 class LyXGUI;
 class LyXRC;
@@ -44,7 +44,7 @@ extern LastFiles * lastfiles; /* we should hopefully be able to move this
 /**
   This is the main LyX object it encapsulates most of the other objects.
 */
-class LyX : public noncopyable {
+class LyX : boost::noncopyable {
 public:
        /// the only allowed constructor
        LyX(int * argc, char * argv[]); // constructor
@@ -61,7 +61,7 @@ private:
        ///
        void runtime();
        ///
-       void init(int * argc, char * argv[], bool);
+       void init(bool);
        ///
        void defaultKeyBindings(kb_keymap * kbmap);
        ///
@@ -74,6 +74,10 @@ private:
         bool ReadRcFile(string const & name);
        /// Read the ui file `name'
        void ReadUIFile(string const & name);
+       /// Read the languages file `name'
+       void ReadLanguagesFile(string const & name);
+       /// Read the encodings file `name'
+       void ReadEncodingsFile(string const & name);
         ///
        bool easyParse(int * argc, char * argv[]);
 };