]> git.lyx.org Git - features.git/blobdiff - src/lyx_main.h
make doc++ able to generate the source documentation for lyx
[features.git] / src / lyx_main.h
index c68c87185db0a8f09006adfd826bfff6ca8f3351..0ba6779ef7b787acbbba6e761e8aa6a55edb7d4f 100644 (file)
@@ -30,10 +30,13 @@ class LastFiles;
 class Buffer;
 class kb_keymap;
 
+///
 extern string system_lyxdir;
+///
 extern string user_lyxdir;
+///
 extern string system_tempdir;
-
+///
 extern LastFiles * lastfiles; /* we should hopefully be able to move this
                              * inside the LyX class */
 
@@ -43,29 +46,18 @@ extern LastFiles * lastfiles; /* we should hopefully be able to move this
 */
 class LyX : public noncopyable {
 public:
-       /**@name Constructors and Deconstructors */
-       //@{
        /// the only allowed constructor
        LyX(int * argc, char * argv[]); // constructor
-       // Always is useful a destructor
+       /// Always is useful a destructor
        ~LyX();
-       //@}
 
-       /**@name Pointers to... */
-       //@{
        ///
        LyXGUI * lyxGUI;  // should be only one of this
-       //@}
 private:
-       /**@name Private variables */
-       //@{
        /// does this user start lyx for the first time?
        bool first_start;
        ///
        string batch_command;
-       //@}
-       /**@name Private Members */
-       //@{
        ///
        void runtime();
        ///
@@ -84,7 +76,6 @@ private:
        void ReadUIFile(string const & name);
         ///
        bool easyParse(int * argc, char * argv[]);
-       //@}
 };
 
 #endif