0024002: Overall code and build procedure refactoring -- automatic
[occt.git] / src / BinTools / BinTools_SurfaceSet.hxx
CommitLineData
42cf5bc1 1// Created on: 2004-05-20
2// Created by: Sergey ZARITCHNY <szy@opencascade.com>
3// Copyright (c) 2004-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 _BinTools_SurfaceSet_HeaderFile
17#define _BinTools_SurfaceSet_HeaderFile
18
19#include <Standard.hxx>
20#include <Standard_DefineAlloc.hxx>
21#include <Standard_Handle.hxx>
22
23#include <TColStd_IndexedMapOfTransient.hxx>
24#include <Standard_Integer.hxx>
25#include <Standard_OStream.hxx>
26#include <Standard_IStream.hxx>
27class Standard_OutOfRange;
28class Geom_Surface;
29
30
31//! Stores a set of Surfaces from Geom in binary format.
32class BinTools_SurfaceSet
33{
34public:
35
36 DEFINE_STANDARD_ALLOC
37
38
39 //! Returns an empty set of Surfaces.
40 Standard_EXPORT BinTools_SurfaceSet();
41
42 //! Clears the content of the set.
43 Standard_EXPORT void Clear();
44
45 //! Incorporate a new Surface in the set and returns
46 //! its index.
47 Standard_EXPORT Standard_Integer Add (const Handle(Geom_Surface)& S);
48
49 //! Returns the Surface of index <I>.
50 Standard_EXPORT Handle(Geom_Surface) Surface (const Standard_Integer I) const;
51
52 //! Returns the index of <L>.
53 Standard_EXPORT Standard_Integer Index (const Handle(Geom_Surface)& S) const;
54
55 //! Writes the content of me on the stream <OS> in
56 //! binary format that can be read back by Read.
57 Standard_EXPORT void Write (Standard_OStream& OS) const;
58
59 //! Reads the content of me from the stream <IS>. me
60 //! is first cleared.
61 Standard_EXPORT void Read (Standard_IStream& IS);
62
63 //! Dumps the surface on the stream in binary
64 //! format that can be read back.
65 Standard_EXPORT static void WriteSurface (const Handle(Geom_Surface)& S, Standard_OStream& OS);
66
67 //! Reads the surface from the stream. The surface is
68 //! assumed to have been written with the Write
69 //! method.
70 Standard_EXPORT static Standard_IStream& ReadSurface (Standard_IStream& IS, Handle(Geom_Surface)& S);
71
72
73
74
75protected:
76
77
78
79
80
81private:
82
83
84
85 TColStd_IndexedMapOfTransient myMap;
86
87
88};
89
90
91
92
93
94
95
96#endif // _BinTools_SurfaceSet_HeaderFile