-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDSClear.h
48 lines (39 loc) · 1.52 KB
/
DSClear.h
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
45
46
47
48
#ifndef _DSCLEAR_H_
#define _DSCLEAR_H_
#include "DSBasicTypes.h"
#include "DSRef.h"
#include "DSAction.h"
/*****************************************************************************
* Klasse DSClear
* Zweck: Datenstruktur zur Speicherung der Parameter fuer eine QSDL-CLEAR-
* Instruktion (Ruecksetzen von QSDL-Sensoren).
* Z100: -
*****************************************************************************/
class DSClear : public DSAction
{
public:
DSClear(DSObject*,
DSString* = NULL, // Label
DSSensorRef = NULL); // Sensor-Objekt
DSClear(DSObject*,
DSString&,
DSSensorRef = NULL);
DSClear(DSObject*,
const char *,
DSSensorRef = NULL);
~DSClear(void);
DSSensorRef GetSensorRef(void) const;
DSResult SetSensorRef(DSSensorRef);
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:
DSSensorRef sensor_ref;
};
#endif // ifndef