DisplacementSettings.h
1 //##################################################################################################
2 //
3 // Ceetron Desktop Components
4 // Component: UnstructGrid
5 //
6 // --------------------------------------------------------------------------------------------
7 // Copyright (C) 2011, 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 
17 #include "CeeCore/RefCountedObject.h"
18 
19 namespace cee {
20 namespace ug {
21 
22 
23 //==================================================================================================
24 //
25 //
26 //
27 //==================================================================================================
28 class CEE_UG_EXPORT DisplacementSettings : public RefCountedObject
29 {
30 public:
31  virtual ~DisplacementSettings();
32 
33  double scaleFactor() const;
34  void setScaleFactor(double scaleFactor);
35 
36 private:
38  CEE_PRIVATE_F(UnstructGridModel);
39  CEE_PRIVATE_IMPL(DisplacementSettings);
40  CEE_DISALLOW_COPY_AND_ASSIGN(DisplacementSettings);
41 };
42 
43 } // namespace ug
44 } // namespace cee
45 
Namespace cee contains all functionality and structures under the Core component. ...
Definition: AppComponent.cpp:26
Base class for all reference counted objects with built-in support for intrusive reference counting...
Definition: RefCountedObject.h:34
Settings for a specific displacement result.
Definition: DisplacementSettings.h:28
UnstructGridModel is a subclass of Model which adds specific model structure and functionality for re...
Definition: UnstructGridModel.h:72