-
Notifications
You must be signed in to change notification settings - Fork 0
/
DSJoin.h
45 lines (36 loc) · 1.38 KB
/
DSJoin.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
#ifndef _DSJOIN_H_
#define _DSJOIN_H_
#include "DSBasicTypes.h"
#include "DSAction.h"
/*****************************************************************************
* Klasse DSJoin
* Zweck: Datenstruktur zur Speicherung der Parameter fuer eine JOIN-
* Instruktion.
* Z100: Seite 59
*****************************************************************************/
class DSJoin : public DSAction
{
public:
DSJoin(DSObject*, // Vaterobjekt
DSString* = NULL, // Connector
DSString* = NULL); // Label
DSJoin(DSObject*, // Vaterobjekt
DSString&,
DSString&);
DSJoin(DSObject*, // Vaterobjekt
const char *,
const char *);
~DSJoin(void);
DSString *GetConnectorRef(void) const;
DSResult SetConnectorRef(DSString *);
DSObject *Clone(DSObject * = NULL, DSObject * = NULL) const; // erzeugt eine identische
// Kopie dieses Objekts
/**************************************************/
/* Die folgende Funktion dient zum systematischen */
/* Durchlaufen und Verarbeiten der Datenstruktur: */
/**************************************************/
virtual DSResult Write(DSWriter *, DSCardinal = 0) const;
private:
DSString *connector_ref;
};
#endif // ifndef