]> git.lyx.org Git - lyx.git/blobdiff - src/support/syscontr.h
some new (not extensive) changes, some fixes, will probably reverto to .la libs later...
[lyx.git] / src / support / syscontr.h
index 02ae8bdb6f7ab997f7320b7ecfad1c37122bbca7..4080b9b0a91d77fe9a838ad23d656b8974c5c03e 100644 (file)
@@ -9,42 +9,27 @@
 
 class Systemcalls;
 
-///
-class SystemcallsSingletoncontroller{
+class SystemcallsSingletoncontroller {
 public:
-       ///
-       class Startcontroller{
+       class Startcontroller {
        public:
-               ///
                Startcontroller();
-               ///
                 ~Startcontroller();
-               ///
-               static SystemcallsSingletoncontroller *GetController();
-               ///
-                void ReduceRefcount() { refcount--; }
+               static SystemcallsSingletoncontroller * getController();
+                void reduceRefcount() { refcount--; }
        private:
-               ///
-               static SystemcallsSingletoncontroller *contr;
-               ///
+               static SystemcallsSingletoncontroller * contr;
                 static int refcount;
         };
-       ///
        ~SystemcallsSingletoncontroller();
-       ///
-       void AddCall(Systemcalls const &newcall);
-       ///
-       void Timer();
+       void addCall(Systemcalls const & newcall);
+       void timer();
        // private: // DEC cxx does not like that (JMarc)
-       ///
        SystemcallsSingletoncontroller();
 private:
-       ///
        struct ControlledCalls {
-               ///
                Systemcalls *call;
-               ///
-               ControlledCalls *next; };
-       ///
-       ControlledCalls *SysCalls;
+               ControlledCalls *next; 
+       };
+       ControlledCalls * sysCalls;
 };