OpenLexocad  27.0
SAT_Exporter.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <OpenLxApp/Document.h>
4 #include <OpenLxApp/Exporter.h>
6 
7 
8 namespace OpenLxApp
9 {
14 {
15 public:
16  SAT_Exporter(std::shared_ptr<OpenLxApp::Document> aDoc);
17  SAT_Exporter() = delete;
18  virtual ~SAT_Exporter() {}
19  static std::shared_ptr<SAT_Exporter> createIn(std::shared_ptr<OpenLxApp::Document> aDoc);
20 
21  virtual int exportFile(const Base::String& filename) override;
22 
23  void setAcisVersion(int aVersion);
24  int getAcisVersion() const;
25 
26 private:
27  int _acisVersion = -1;
28 };
29 } // namespace OpenLxApp
Exports the visible Elements of the Document to a SAT file.
Definition: SAT_Exporter.h:13
A Utf-16 (windows) or ucs4 (unix) encoded string class.
Definition: String.h:29
#define OPENLXAPP_EXPORT
Definition: OpenLxApp_defines.h:12
Definition: ActiveScript.h:9
Core::PropertyText filename
Definition: CoreDocument.h:151
Base class of all Exporters.
Definition: Exporter.h:16
virtual ~SAT_Exporter()
Definition: SAT_Exporter.h:18