ReaderSettingsPtc.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 ReaderSettingsPtc
27 {
28 
29 public:
31 
32  void setCreateInternalTets(bool create);
33  bool createsInternalTets() const;
34 
35 private:
36  bool m_createsInternalTets;
37 };
38 
39 }
40 }
41 }
Namespace cee contains all functionality and structures under the Core component. ...
Definition: AppComponent.cpp:26
Settings applicable to the PTC file reader.
Definition: ReaderSettingsPtc.h:26