BankAndCustomer
Loading...
Searching...
No Matches
LegalEntity.h
Go to the documentation of this file.
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
61//@@gloFileDescriptionEND
62//-----------------------------------------------------------------------------
63//@@gloForwardsBEGIN
64namespace glo
65{
66 class Base;
67}
68//@@gloForwardsEND
69
70//@@gloSuperClassIncludesBEGIN
71#include "Person.h"
72//@@gloSuperClassIncludesEND
73
74//@@gloReferencesIncludesBEGIN
75//@@gloReferencesIncludesEnd
76
77//-----------------------------------------------------------------------------
78//@@gloNamespaceNamesBEGIN
79//@@gloNamespaceNamesEND
80//-----------------------------------------------------------------------------
81//@@gloClassDeclarationBEGIN
82// Glo-BaseVersion:1730810247
96class LegalEntity : public Person
97//@@gloClassDeclarationEND
98{
99 //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
100 //@@gloBeforeKeywordPersistentBEGIN
102 //@@gloBeforeKeywordPersistentEND
103 private persistent:
104 //@@gloBehindKeywordPersistentBEGIN
106 //@@gloBehindKeywordPersistentEND
107 //-------------------------------------------------------------------------
109 //-------------------------------------------------------------------------
110 //@@gloBeforeKeywordTransientBEGIN
112 //@@gloBeforeKeywordTransientEND
113 private transient:
114 //@@gloBehindKeywordTransientBEGIN
116 //@@gloBehindKeywordTransientEND
117 //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
118
119 public:
120 //-------------------------------------------------------------------------
131 //-------------------------------------------------------------------------
143 LegalEntity( const std::string & rsName ): Person( rsName ){};
144 //-------------------------------------------------------------------------
155 //-------------------------------------------------------------------------
156
157 private:
158 //============== Copy-Konstruktor
159 //-------------------------------------------------------------------------
170 //-------------------------------------------------------------------------
171
172 private:
173 //============== Operatoren
174 //-------------------------------------------------------------------------
185 //-------------------------------------------------------------------------
186};
187//-----------------------------------------------------------------------------
188//@@gloNamespaceCurlyBracketsBEGIN
189//@@gloNamespaceCurlyBracketsEND
190//-----------------------------------------------------------------------------
191#endif
#define transient
Definition GloPersistent.h:181
#define persistent
Definition GloPersistent.h:166
Header for Person
An abstract person from which natural and legal persons can be derived.
Definition Person.h:99
Definition GloBasePersistent.h:60