lyx_mirror/src/syscontr.h
Lars Gullik Bjønnes 27de1486ca Initial revision
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@140 a592a061-630c-0410-9148-cb99ea01b6c8
1999-09-27 18:44:28 +00:00

51 lines
837 B
C++

// -*- C++ -*-
#ifdef __GNUG__
#pragma interface
#endif
#include <LString.h>
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)
///
SystemcallsSingletoncontroller();
private:
///
struct ControlledCalls {
///
Systemcalls *call;
///
ControlledCalls *next; };
///
ControlledCalls *SysCalls;
};