ImportCaeComponent.h
1 //##################################################################################################
2 //
3 // Ceetron Desktop Components
4 // Component: ImportCae
5 //
6 // --------------------------------------------------------------------------------------------
7 // Copyright (C) 2014, 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 "CeeImportCae/Base.h"
16 
17 #include "CeeCore/Str.h"
18 
19 namespace cee {
20 
21 class Instance;
22 
23 namespace imp {
24 namespace cae {
25 
26 
27 //==================================================================================================
28 //
29 //
30 //
31 //==================================================================================================
32 class CEE_IMP_CAE_EXPORT ImportCaeComponent
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(ImportCaeComponent);
43 };
44 
45 
46 } // namespace cae
47 } // namespace imp
48 } // namespace cee
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: ImportCaeComponent.h:32