PartSettingsIterator.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 "CeeCore/Base.h"
16 #include "CeeUnstructGrid/Base.h"
17 #include <vector>
18 
19 namespace cee {
20 namespace ug {
21 
22 class PartSettings;
23 class UnstructGridModel;
24 
25 //==================================================================================================
26 //
27 //
28 //
29 //==================================================================================================
30 class CEE_UG_EXPORT PartSettingsIterator
31 {
32 public:
34  PartSettingsIterator(UnstructGridModel* model, size_t globalGeometryIndex);
36 
37  bool hasNext() const;
38  PartSettings* next();
39 
40 private:
41  CEE_PRIVATE_IMPL(PartSettingsIterator);
42  CEE_DISALLOW_COPY_AND_ASSIGN(PartSettingsIterator);
43 };
44 
45 } // namespace ug
46 } // namespace cee
Namespace cee contains all functionality and structures under the Core component. ...
Definition: AppComponent.cpp:26
Part settings iterator.
Definition: PartSettingsIterator.h:30
UnstructGridModel is a subclass of Model which adds specific model structure and functionality for re...
Definition: UnstructGridModel.h:72
Settings for a specific part.
Definition: PartSettings.h:31