]> git.lyx.org Git - lyx.git/blobdiff - src/support/syscontr.h
remove commented HAVE_SSTREAM code
[lyx.git] / src / support / syscontr.h
index 5de04c8e65b9e1069810400fbc9fef2c3cb4e9ba..07437636c3a6187a2d786718bf2736861fb18104 100644 (file)
@@ -9,27 +9,42 @@
 
 class Systemcalls;
 
+///
 class SystemcallsSingletoncontroller {
 public:
+       ///
        class Startcontroller {
        public:
+               ///
                Startcontroller();
+               ///
                 ~Startcontroller();
+               ///
                static SystemcallsSingletoncontroller * getController();
+               ///
                 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;
 };