ResultCalculatorParams.h
1 //##################################################################################################
2 //
3 // Ceetron Desktop Components
4 // Component: UnstructGrid
5 //
6 // --------------------------------------------------------------------------------------------
7 // Copyright (C) 2021, 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 #include "CeeCore/Str.h"
17 
18 namespace cee {
19 namespace ug {
20 
21 //==================================================================================================
22 //
23 //
24 //
25 //==================================================================================================
26 class CEE_UG_EXPORT ResultCalculatorParams
27 {
28 public:
31 
32  bool hasKey(const Str& key) const;
33  double value(const Str& key) const;
34  void setValue(const Str& key, double value);
35 
36  std::vector<Str> keyArray() const;
37 
38 private:
39  CEE_PRIVATE_IMPL(ResultCalculatorParams);
40  CEE_BASE_F(DataSourceInterface);
41 
42  CEE_DISALLOW_COPY_AND_ASSIGN(ResultCalculatorParams);
43 };
44 
45 } // namespace ug
46 } // 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
Parameters for a given result calculator.
Definition: ResultCalculatorParams.h:26
A parent class for interface data sources.
Definition: DataSourceInterface.h:34