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
53//@@gloFileDescriptionEND
54//-----------------------------------------------------------------------------
55//@@gloForwardsBEGIN
56namespace glo
57{
58 class Base;
59}
60//@@gloForwardsEND
61
62//@@gloSuperClassIncludesBEGIN
63#include "Person.h"
64//@@gloSuperClassIncludesEND
65
66//@@gloReferencesIncludesBEGIN
67//@@gloReferencesIncludesEnd
68
69//-----------------------------------------------------------------------------
70//@@gloNamespaceNamesBEGIN
71//@@gloNamespaceNamesEND
72//-----------------------------------------------------------------------------
73//@@gloClassDeclarationBEGIN
74// Glo-BaseVersion:1718706516
88class LegalEntity : public Person
89//@@gloClassDeclarationEND
90{
91 //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
92 //@@gloBeforeKeywordPersistentBEGIN
94 //@@gloBeforeKeywordPersistentEND
95 private persistent:
96 //@@gloBehindKeywordPersistentBEGIN
98 //@@gloBehindKeywordPersistentEND
99 //-------------------------------------------------------------------------
101 //-------------------------------------------------------------------------
102 //@@gloBeforeKeywordTransientBEGIN
104 //@@gloBeforeKeywordTransientEND
105 private transient:
106 //@@gloBehindKeywordTransientBEGIN
108 //@@gloBehindKeywordTransientEND
109 //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
110
111 public:
112 //-------------------------------------------------------------------------
123 //-------------------------------------------------------------------------
135 LegalEntity( const std::string & rsName ): Person( rsName ){};
136 //-------------------------------------------------------------------------
147 //-------------------------------------------------------------------------
148
149 private:
150 //============== Copy-Konstruktor
151 //-------------------------------------------------------------------------
162 //-------------------------------------------------------------------------
163
164 private:
165 //============== Operatoren
166 //-------------------------------------------------------------------------
177 //-------------------------------------------------------------------------
178};
179//-----------------------------------------------------------------------------
180//@@gloNamespaceCurlyBracketsBEGIN
181//@@gloNamespaceCurlyBracketsEND
182//-----------------------------------------------------------------------------
183#endif
#define transient
Definition GloPersistent.h:174
#define persistent
Definition GloPersistent.h:159
Header for Person
An abstract person from which natural and legal persons can be derived.
Definition Person.h:91
Definition GloBasePersistent.h:52