-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCGInputSignal.h
31 lines (23 loc) · 875 Bytes
/
CGInputSignal.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
#ifndef _CGINPUTSIGNAL_H_
#define _CGINPUTSIGNAL_H_
#include <DS/DSInputSignal.h>
#include "CGBasicTypes.h"
#include "CGWriter.h"
/******************************************************************************
* Klasse CGInputSignal
* Zweck: Steuert die Codegenerierung fuer die SDL-Inputs: signalkonsumierende
* und spontane Transitonen
******************************************************************************/
class CGInputSignal : public DSInputSignal
{
public:
CGInputSignal(DSObject* = NULL, // Vaterobjekt
DSSignalRef = NULL,
DSVariableAccessList* = NULL);
~CGInputSignal(void);
DSObject *New(DSObject * = NULL) const; // virtueller Konstruktor
DSResult Write(DSWriter *, DSCardinal) const;
private:
DSResult WriteImplementation(CGWriter *) const;
};
#endif