-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCGOperandLiteral.h
34 lines (27 loc) · 1.22 KB
/
CGOperandLiteral.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
#ifndef _CGOPERANDLITERAL_H_
#define _CGOPERANDLITERAL_H_
#include <DS/DSOperandLiteral.h>
#include "CGBasicTypes.h"
#include "CGWriter.h"
class CGOperandLiteral : public DSOperandLiteral
{
public:
CGOperandLiteral(DSObject* = NULL, // Vaterobjekt, wird an DSOperand
// weitergegeben
DSString* = NULL, // Literalname
DSSortRef = NULL); // Lietralsorte (DSSortExtended)
CGOperandLiteral(DSObject*, // Vaterobjekt, wird an DSOperand
// weitergegeben
DSString&,
DSSortRef = NULL); // Lietralsorte (DSSortExtended)
CGOperandLiteral(DSObject*, // Vaterobjekt, wird an DSOperand
// weitergegeben
const char *,
DSSortRef = NULL); // Lietralsorte (DSSortExtended)
~CGOperandLiteral(void);
DSObject *New(DSObject * = NULL) const; // ueberladener Konstruktor
DSResult Write(DSWriter *, DSCardinal = 0) const;
private:
DSResult WriteImplementation(CGWriter *) const;
};
#endif