diff options
| author | Felix Morgner <felix.morgner@gmail.com> | 2026-08-24 11:16:07 +0200 |
|---|---|---|
| committer | Felix Morgner <felix.morgner@gmail.com> | 2026-08-24 11:16:07 +0200 |
| commit | c068f22329d5cc722622a2183bbb22eef2093df7 (patch) | |
| tree | 12d56c1aede67988a55e241364606bfbb4dba933 /tool_src/BspLib/OutputData3D.h | |
| download | openparsec-main.tar.xz openparsec-main.zip | |
Diffstat (limited to 'tool_src/BspLib/OutputData3D.h')
| -rw-r--r-- | tool_src/BspLib/OutputData3D.h | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/tool_src/BspLib/OutputData3D.h b/tool_src/BspLib/OutputData3D.h new file mode 100644 index 0000000..2a61249 --- /dev/null +++ b/tool_src/BspLib/OutputData3D.h @@ -0,0 +1,44 @@ +//----------------------------------------------------------------------------- +// BSPLIB HEADER: OutputData3D.h +// +// Copyright (c) 1997 by Markus Hadwiger +// All Rights Reserved. +//----------------------------------------------------------------------------- + +#ifndef _OUTPUTDATA3D_H_ +#define _OUTPUTDATA3D_H_ + +// bsplib header files +#include "BspLibDefs.h" +#include "BspObjectList.h" +#include "IOData3D.h" +#include "InputData3D.h" + + +BSPLIB_NAMESPACE_BEGIN + + +// generic output class for 3-D data ------------------------------------------ +// +class OutputData3D : public IOData3D { + +public: + OutputData3D( BspObjectList objectlist, const char *filename, int format = BSP_FORMAT_1_1 ); + OutputData3D( const InputData3D& inputdata, int format = BSP_FORMAT_1_1 ); + virtual ~OutputData3D(); + + virtual int WriteOutputFile(); + +protected: + int m_objectformat; + +private: + OutputData3D* m_data; +}; + + +BSPLIB_NAMESPACE_END + + +#endif // _OUTPUTDATA3D_H_ + |
