GeometryComponent.h
1 //##################################################################################################
2 //
3 // Ceetron Desktop Components
4 // Component: Geometry
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 "CeeGeometry/Base.h"
16 #include "CeeCore/Str.h"
17 
18 namespace cee {
19 
20 class Instance;
21 
22 namespace geo {
23 
24 
25 //==================================================================================================
26 //
27 // Static class for Geometry component
28 //
29 //==================================================================================================
30 class CEE_GEO_EXPORT GeometryComponent
31 {
32 public:
33  static bool isInitialized();
34  static bool initialize(Instance* instance);
35 
36  static unsigned int version();
37  static Str versionString();
38 
39 private:
40  CEE_DISALLOW_COPY_AND_ASSIGN(GeometryComponent);
41 };
42 
43 }
44 }
Namespace cee contains all functionality and structures under the Core component. ...
Definition: AppComponent.cpp:26
A general unicode based string class.
Definition: Str.h:28
Ceetron Desktop Components instance object.
Definition: Instance.h:28
Static class for initialization of the component.
Definition: GeometryComponent.h:30