0028840: Data Exchange - rewrite the STL Reader/Writer
[occt.git] / src / StlAPI / StlAPI_Writer.hxx
CommitLineData
42cf5bc1 1// Created on: 2000-06-23
2// Created by: Sergey MOZOKHIN
3// Copyright (c) 2000-2014 OPEN CASCADE SAS
4//
5// This file is part of Open CASCADE Technology software library.
6//
7// This library is free software; you can redistribute it and/or modify it under
8// the terms of the GNU Lesser General Public License version 2.1 as published
9// by the Free Software Foundation, with special exception defined in the file
10// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
11// distribution for complete text of the license and disclaimer of any warranty.
12//
13// Alternatively, this file may be used under the terms of Open CASCADE
14// commercial license or contractual agreement.
15
16#ifndef _StlAPI_Writer_HeaderFile
17#define _StlAPI_Writer_HeaderFile
18
4178b353 19#include <Poly_Triangulation.hxx>
42cf5bc1 20#include <Standard.hxx>
21#include <Standard_DefineAlloc.hxx>
22#include <Standard_Handle.hxx>
42cf5bc1 23#include <Standard_Boolean.hxx>
42cf5bc1 24#include <Standard_CString.hxx>
42cf5bc1 25
4178b353 26class TopoDS_Shape;
42cf5bc1 27
28//! This class creates and writes
4178b353 29//! STL files from Open CASCADE shapes. An STL file can be written to an existing STL file or to a new one.
30class StlAPI_Writer
42cf5bc1 31{
32public:
33
34 DEFINE_STANDARD_ALLOC
35
4178b353 36 //! Creates a writer object with default parameters: ASCIIMode.
42cf5bc1 37 Standard_EXPORT StlAPI_Writer();
42cf5bc1 38
4178b353 39 //! Returns the address to the flag defining the mode for writing the file.
40 //! This address may be used to either read or change the flag.
41 //! If the mode returns True (default value) the generated file is an ASCII file.
42 //! If the mode returns False, the generated file is a binary file.
43 Standard_Boolean& ASCIIMode() { return myASCIIMode; }
42cf5bc1 44
4178b353 45 //! Converts a given shape to STL format and writes it to file with a given filename.
46 //! \return the error state.
47 Standard_EXPORT Standard_Boolean Write (const TopoDS_Shape& theShape,
48 const Standard_CString theFileName);
42cf5bc1 49
50private:
4178b353 51 Standard_Boolean myASCIIMode;
42cf5bc1 52};
53
42cf5bc1 54#endif // _StlAPI_Writer_HeaderFile