]> git.lyx.org Git - lyx.git/blobdiff - src/support/syscontr.h
small changes read changelog
[lyx.git] / src / support / syscontr.h
index 4080b9b0a91d77fe9a838ad23d656b8974c5c03e..4066d84b0ffb4871af6224709f62e6b50e82a96c 100644 (file)
@@ -4,32 +4,47 @@
 #pragma interface
 #endif
 
-#include <LString.h>
+#include "LString.h"
 
 
 class Systemcalls;
 
+///
 class SystemcallsSingletoncontroller {
 public:
+       ///
        class Startcontroller {
        public:
+               ///
                Startcontroller();
+               ///
                 ~Startcontroller();
+               ///
                static SystemcallsSingletoncontroller * getController();
-                void reduceRefcount() { refcount--; }
+               ///
+                void reduceRefcount() { --refcount; }
        private:
+               ///
                static SystemcallsSingletoncontroller * contr;
+               ///
                 static int refcount;
         };
+       ///
        ~SystemcallsSingletoncontroller();
+       ///
        void addCall(Systemcalls const & newcall);
+       ///
        void timer();
-       // private: // DEC cxx does not like that (JMarc)
+       /// private: // DEC cxx does not like that (JMarc)
        SystemcallsSingletoncontroller();
 private:
+       ///
        struct ControlledCalls {
-               Systemcalls *call;
-               ControlledCalls *next; 
+               ///
+               Systemcalls * call;
+               ///
+               ControlledCalls * next; 
        };
+       ///
        ControlledCalls * sysCalls;
 };