FieldValuesGenerator.h
1 //##################################################################################################
2 //
3 // Ceetron Desktop Components
4 // Component: Report
5 //
6 // --------------------------------------------------------------------------------------------
7 // Copyright (C) 2016, 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 
17 #include "CeeCore/Str.h"
18 
19 #include "CeeUnstructGrid/UnstructGridModel.h"
20 
21 #include <map>
22 
23 namespace cee {
24 namespace rep {
25 
26 //==================================================================================================
27 //
28 //
29 //
30 //==================================================================================================
31 class CEE_REP_EXPORT FieldValuesGenerator
32 {
33 public:
34  static std::map<Str, Str> getFieldValuesFromModel(cee::ug::UnstructGridModel* model);
35 
36 private:
38  CEE_DISALLOW_COPY_AND_ASSIGN(FieldValuesGenerator);
39 };
40 
41 } // namespace rep
42 } // namespace cee
Namespace cee contains all functionality and structures under the Core component. ...
Definition: AppComponent.cpp:26
Helper class for populating field data from an UnstructGridModel.
Definition: FieldValuesGenerator.h:31
UnstructGridModel is a subclass of Model which adds specific model structure and functionality for re...
Definition: UnstructGridModel.h:72