VTFxComponent.h
1 //##################################################################################################
2 //
3 // Ceetron Export
4 // Component: VTFx
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 "CeeVTFx/Base.h"
16 
17 #include "CeeCore/Str.h"
18 
19 namespace cee {
20 
21 class Instance;
22 class PropertySet;
23 
24 namespace vtfx {
25 
26 
27 //==================================================================================================
28 //
29 // Static class for VTFx component
30 //
31 //==================================================================================================
32 class CEE_VTFX_EXPORT VTFxComponent
33 {
34 public:
35  static bool isInitialized();
36  static bool initialize(Instance* instance);
37 
38  static bool isEvaluationVersion();
39  static int licenseNumber();
40 
41  static unsigned int version();
42  static Str versionString();
43 
44  static void internal_configureComponent(const PropertySet& internalConfiguration);
45 
46 private:
47  CEE_DISALLOW_COPY_AND_ASSIGN(VTFxComponent);
48 };
49 
50 
51 } // namespace ug
52 } // namespace cee
Namespace cee contains all functionality and structures under the Core component. ...
Definition: AppLogging.cpp:20
Static class for initialization of the component.
Definition: VTFxComponent.h:32
A general unicode based string class.
Definition: Str.h:28
Ceetron 3D Components instance object.
Definition: Instance.h:27
A property set stores a set of properties each consisting of a key and a value.
Definition: PropertySet.h:28