PropertyBuilderPlot2d.h
1 //##################################################################################################
2 //
3 // Ceetron Desktop Components
4 // Component: UnstructGrid
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 "CeeExport/Base.h"
16 
17 namespace cee {
18 
19 class PropertySetCollection;
20 
21 namespace plt {
22 class OverlayPlot;
23 }
24 
25 namespace exp {
26 class ExportVTFx;
27 
28 //==================================================================================================
29 //
30 // PropertyBuilderPlot2d
31 //
32 //==================================================================================================
33 class CEE_EXP_EXPORT PropertyBuilderPlot2d
34 {
35 public:
36  PropertyBuilderPlot2d(PropertySetCollection* propSetCollection);
38 
39  void addFromPlot2d(const plt::OverlayPlot& overlayPlot);
40 
41 private:
42  CEE_PRIVATE_IMPL(PropertyBuilderPlot2d);
43  CEE_DISALLOW_COPY_AND_ASSIGN(PropertyBuilderPlot2d);
44 };
45 
46 } // namespace exp
47 } // namespace cee
Namespace cee contains all functionality and structures under the Core component. ...
Definition: AppComponent.cpp:26
Finds VTFx properties from plot overlay item and builds a property set collection.
Definition: PropertyBuilderPlot2d.h:33
A collection of property sets.
Definition: PropertySetCollection.h:29
Overlay item with basic 2D plotting.
Definition: OverlayPlot.h:38