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