ReaderSettingsOpenFoam.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 namespace cee {
18 namespace imp {
19 namespace cae {
20 
21 //==================================================================================================
22 //
23 //
24 //
25 //==================================================================================================
26 class CEE_IMP_CAE_EXPORT ReaderSettingsOpenFoam
27 {
28 
29 public:
31 
32  void setLoadsBoundaryParts(bool load);
33  void setIncludesProcessorBoundaryParts(bool includes);
34 
35  bool loadsBoundaryParts() const;
36  bool includesProcessorBoundaryParts() const;
37 
38  void setProvidesNodeAveragedResults(bool provide);
39  bool providesNodeAveragedResults() const;
40 
41 private:
42  bool m_loadBoundaryParts;
43  bool m_includeProcessorBoundaryParts;
44  bool m_provideNodeAveragedResults;
45 };
46 
47 }
48 }
49 }
Namespace cee contains all functionality and structures under the Core component. ...
Definition: AppComponent.cpp:26
Settings applicable to the OpenFoam file reader.
Definition: ReaderSettingsOpenFoam.h:26