Instance.h
1 //##################################################################################################
2 //
3 // Ceetron 3D Components
4 // Component: Core
5 //
6 // --------------------------------------------------------------------------------------------
7 // Copyright (C) 2011, Ceetron AS
8 // This is UNPUBLISHED PROPRIETARY SOURCE CODE of Ceetron AS. The contents of this file may
9 // not be disclosed to third parties, copied or duplicated in any form, in whole or in part,
10 // without the prior written permission of Ceetron AS.
11 //##################################################################################################
12 
13 #pragma once
14 
15 #include "CeeCore/RefCountedObject.h"
16 #include "CeeCore/Str.h"
17 
18 namespace cee {
19 
20 class LogManager;
21 
22 //==================================================================================================
23 //
24 //
25 //
26 //==================================================================================================
27 class CEE_CORE_EXPORT Instance : public RefCountedObject
28 {
29 public:
30  virtual ~Instance();
31 
32  unsigned int version() const;
33  Str versionString() const;
34 
35  unsigned int licenseKeyA() const;
36  unsigned int licenseKeyB() const;
37 
38 private:
39  Instance();
40 
41 private:
42  CEE_BASE_F(CoreComponent);
43  CEE_PRIVATE_IMPL(Instance);
44  CEE_DISALLOW_COPY_AND_ASSIGN(Instance);
45 };
46 
47 }
Static class for initialization of the Core component.
Definition: CoreComponent.h:31
Namespace cee contains all functionality and structures under the Core component. ...
Definition: AppLogging.cpp:20
A general unicode based string class.
Definition: Str.h:28
Ceetron 3D Components instance object.
Definition: Instance.h:27
Base class for all reference counted objects with built-in support for intrusive reference counting...
Definition: RefCountedObject.h:34