mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-24 10:40:48 +00:00
6c2fde690b
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1651 a592a061-630c-0410-9148-cb99ea01b6c8
51 lines
843 B
C++
51 lines
843 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;
|
|
};
|