BankAndCustomer
Alle Klassen Namensbereiche Dateien Funktionen Variablen Typdefinitionen Freundbeziehungen Makrodefinitionen Seiten
LegalEntity.h
gehe zur Dokumentation dieser Datei
1// ****************************************************************************
2// Created by GlobalObjects source code generator version 1.0.9
3// Creation date: 2024.06.16 - 23:00:15
4// Database: "BankAndCustomer"
5// ****************************************************************************
6//-----------------------------------------------------------------------------
7//@@gloIncludeGuardBEGIN
8#ifndef INC_LEGALENTITY_H
9#define INC_LEGALENTITY_H
10//@@gloIncludeGuardEND
11//-----------------------------------------------------------------------------
12//@@gloFileDescriptionBEGIN
78//@@gloFileDescriptionEND
79//-----------------------------------------------------------------------------
80//@@gloForwardsBEGIN
81namespace glo
82{
83 class Base;
84}
85//@@gloForwardsEND
86
87//@@gloSuperClassIncludesBEGIN
88#include "Person.h"
89//@@gloSuperClassIncludesEND
90
91//@@gloReferencesIncludesBEGIN
92//@@gloReferencesIncludesEnd
93
94//-----------------------------------------------------------------------------
95//@@gloNamespaceNamesBEGIN
96//@@gloNamespaceNamesEND
97//-----------------------------------------------------------------------------
98//@@gloClassDeclarationBEGIN
99// Glo-BaseVersion:1742566122
113class LegalEntity : public Person
114//@@gloClassDeclarationEND
115{
116 //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
117 //@@gloBeforeKeywordPersistentBEGIN
119 //@@gloBeforeKeywordPersistentEND
120 private persistent:
121 //@@gloBehindKeywordPersistentBEGIN
123 //@@gloBehindKeywordPersistentEND
124 //-------------------------------------------------------------------------
126 //-------------------------------------------------------------------------
127 //@@gloBeforeKeywordTransientBEGIN
129 //@@gloBeforeKeywordTransientEND
130 private transient:
131 //@@gloBehindKeywordTransientBEGIN
133 //@@gloBehindKeywordTransientEND
134 //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
135
136 public:
137 //-------------------------------------------------------------------------
148 //-------------------------------------------------------------------------
160 LegalEntity( const std::string & rsName ): Person( rsName ){};
161 //-------------------------------------------------------------------------
172 //-------------------------------------------------------------------------
173
174 private:
175 //============== Copy-Konstruktor
176 //-------------------------------------------------------------------------
187 //-------------------------------------------------------------------------
188
189 private:
190 //============== Operatoren
191 //-------------------------------------------------------------------------
202 //-------------------------------------------------------------------------
203};
204//-----------------------------------------------------------------------------
205//@@gloNamespaceCurlyBracketsBEGIN
206//@@gloNamespaceCurlyBracketsEND
207//-----------------------------------------------------------------------------
208#endif
#define transient
Definition GloPersistent.h:184
#define persistent
Definition GloPersistent.h:169
Header für Person
Definition GloBasePersistent.h:60