-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDSInputTimerSignal.h
More file actions
44 lines (35 loc) · 1.53 KB
/
DSInputTimerSignal.h
File metadata and controls
44 lines (35 loc) · 1.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#ifndef _DSINPUTTIMERSIGNAL_H_
#define _DSINPUTTIMERSIGNAL_H_
#include "DSBasicTypes.h"
#include "DSObject.h"
#include "DSRef.h"
#include "DSVariableAccessComponent.h"
/************************************************************************
* Classname: DSInputTimerSignal
* Purpose: Speichert einen SDL Timer-Stimulus
* Z100: Seite 53 <stimulus>
************************************************************************/
class DSInputTimerSignal : public DSObject,
public DSVariableAccessComponent
{
public:
DSInputTimerSignal(DSObject* = NULL, // Vaterobjekt
DSTimerRef = NULL,
DSVariableAccessList* = NULL);
virtual ~DSInputTimerSignal(void);
DSTimerRef GetTimerRef(void) const;
DSResult SetTimerRef(DSTimerRef);
DSObject *Clone(DSObject * = NULL,
DSObject * = NULL) const;
// erzeugt eine identische
// Kopie dieses Objekts
/***********************************************************/
/* Die folgenden zwei Funktionen dienen zum systematischen */
/* Durchlaufen und Verarbeiten der Datenstruktur: */
/***********************************************************/
virtual DSResult Write(DSWriter *, DSCardinal = 0) const;
virtual DSResult Run(DSWriter*, DSType, DSCardinal = 0) const;
private:
DSTimerRef timer_ref;
};
#endif