ReportComponent.h
1 //##################################################################################################
2 //
3 // Ceetron Desktop Components
4 // Component: Report
5 //
6 // --------------------------------------------------------------------------------------------
7 // Copyright (C) 2013, 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 "CeeReport/Base.h"
16 #include "CeeCore/Str.h"
17 
18 #include <string>
19 
20 namespace cee {
21 
22 class Instance;
23 
24 namespace rep {
25 
26 class CEE_REP_EXPORT ReportComponent
27 {
28 public:
29  static bool initialize(Instance* instance);
30  static bool isInitialized();
31 
32  static unsigned int version();
33  static Str versionString();
34 
35 private:
37  CEE_DISALLOW_COPY_AND_ASSIGN(ReportComponent);
38 
39 };
40 
41 } // namespace rep
42 } // namespace cee
Static class for initialization of the component.
Definition: ReportComponent.h:26
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