0024002: Overall code and build procedure refactoring -- automatic
[occt.git] / src / BinTools / BinTools.hxx
CommitLineData
42cf5bc1 1// Created on: 2004-05-11
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_HeaderFile
17#define _BinTools_HeaderFile
18
19#include <Standard.hxx>
20#include <Standard_DefineAlloc.hxx>
21#include <Standard_Handle.hxx>
22
23#include <Standard_OStream.hxx>
24#include <Standard_Real.hxx>
25#include <Standard_Integer.hxx>
26#include <Standard_Boolean.hxx>
27#include <Standard_ExtCharacter.hxx>
28#include <Standard_IStream.hxx>
29class BinTools_ShapeSet;
30class BinTools_Curve2dSet;
31class BinTools_CurveSet;
32class BinTools_SurfaceSet;
33class BinTools_LocationSet;
34
35
36//! Tool to keep shapes in binary format
37class BinTools
38{
39public:
40
41 DEFINE_STANDARD_ALLOC
42
43
44 Standard_EXPORT static Standard_OStream& PutReal (Standard_OStream& OS, const Standard_Real theValue);
45
46 Standard_EXPORT static Standard_OStream& PutInteger (Standard_OStream& OS, const Standard_Integer theValue);
47
48 Standard_EXPORT static Standard_OStream& PutBool (Standard_OStream& OS, const Standard_Boolean theValue);
49
50 Standard_EXPORT static Standard_OStream& PutExtChar (Standard_OStream& OS, const Standard_ExtCharacter theValue);
51
52 Standard_EXPORT static Standard_IStream& GetReal (Standard_IStream& IS, Standard_Real& theValue);
53
54 Standard_EXPORT static Standard_IStream& GetInteger (Standard_IStream& IS, Standard_Integer& theValue);
55
56 Standard_EXPORT static Standard_IStream& GetBool (Standard_IStream& IS, Standard_Boolean& theValue);
57
58 Standard_EXPORT static Standard_IStream& GetExtChar (Standard_IStream& IS, Standard_ExtCharacter& theValue);
59
60
61
62
63protected:
64
65
66
67
68
69private:
70
71
72
73
74friend class BinTools_ShapeSet;
75friend class BinTools_Curve2dSet;
76friend class BinTools_CurveSet;
77friend class BinTools_SurfaceSet;
78friend class BinTools_LocationSet;
79
80};
81
82
83
84
85
86
87
88#endif // _BinTools_HeaderFile