BankAndCustomer
|
Header for Persistent More...
#include "GloTypes.h"
#include "GloBasePersistent.h"
#include "GloPersObjectSpy.h"
#include "GloAttributeID.h"
#include "GloRecord.h"
#include "GloTOndemand.h"
#include "GloTPointerSet.h"
#include "GloTOndemandSet.h"
#include "GloTPointerList.h"
#include "GloTOndemandList.h"
#include "EuException.h"
#include <string>
#include <ctime>
#include <list>
Go to the source code of this file.
Classes | |
class | glo::Persistent |
The base class of the persistent classes. All persistent classes must be derived from this class to be able to process their objects in the database. More... | |
Namespaces | |
namespace | glo |
Macros | |
#define | GLO_OBJECT(...) |
#define | GLO_INDEX(...) |
#define | GLO_ANNOTATE_ACCESS_SPECIFIER(x) |
#define | GLO_PERSISTENT_AREA GLO_ANNOTATE_ACCESS_SPECIFIER(x) |
#define | persistent GLO_PERSISTENT_AREA |
#define | transient GLO_PERSISTENT_AREA |
Header for Persistent
Terms of License The source code in this file is licensed.
SPDX-License-Identifier: LicenseRef-Helmut-Jakoby-Commercial-License OR LicenseRef-Helmut-Jakoby-Adapted-Prosperity-Public-License
Helmut-Jakoby-Commercial-License
For OEMs (Original Equipment Manufacturers), ISVs (Independent Software Vendors), VARs (Value Added Resellers) and other distributors who combine commercially licensed software with Software © by Helmut Jakoby and distribute it as such or in conjunction with another product and do not wish to publish the source code of the commercially licensed software under any other license that may be offered, a commercial license is available for this purpose. Please review the following information to ensure the Commercial-License requirements will be met: https://globalobjects.de/hjacomlicense_en.html .
Helmut-Jakoby-Adapted-Prosperity-Public-License
For developers of free, non-commercial software applications who want to combine and distribute their application with Software © by Helmut Jakoby, this license is a good option. Please review the following information to ensure the Adapted-Prosperity-Public-License requirements will be met: https://globalobjects.de/hjappllicense_en.html .
#define GLO_ANNOTATE_ACCESS_SPECIFIER | ( | x | ) |
#define GLO_INDEX | ( | ... | ) |
To insert a GLO-specific index in the header of persistent classes. Examples:
See example in ExampleClass.h.
#define GLO_OBJECT | ( | ... | ) |
It declares the virtual methodes for the subclasses. Examples:
See example in ExampleClass.h.
#define GLO_PERSISTENT_AREA GLO_ANNOTATE_ACCESS_SPECIFIER(x) |
-> persistent
-> transient
#define persistent GLO_PERSISTENT_AREA |
Start sequence for the persistent attributes area.
Within the start sequence 'persistent' and end sequence 'transient' all attributes are considered for storage in GlobalObjects.
See example in ExampleClass.h.
#define transient GLO_PERSISTENT_AREA |
End sequence for the range of persistent attributes.
See description of persistent.