0031642: Visualization - crash in Graphic3d_Structure::SetVisual() on redisplaying...
[occt.git] / src / BOPAlgo / BOPAlgo_Algo.cxx
1 // Created by: Peter KURNEV
2 // Copyright (c) 2010-2014 OPEN CASCADE SAS
3 // Copyright (c) 2007-2010 CEA/DEN, EDF R&D, OPEN CASCADE
4 // Copyright (c) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, CEDRAT,
5 //                         EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
6 //
7 // This file is part of Open CASCADE Technology software library.
8 //
9 // This library is free software; you can redistribute it and/or modify it under
10 // the terms of the GNU Lesser General Public License version 2.1 as published
11 // by the Free Software Foundation, with special exception defined in the file
12 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
13 // distribution for complete text of the license and disclaimer of any warranty.
14 //
15 // Alternatively, this file may be used under the terms of Open CASCADE
16 // commercial license or contractual agreement.
17
18
19 #include <BOPAlgo_Algo.hxx>
20
21 //=======================================================================
22 // function: 
23 // purpose: 
24 //=======================================================================
25 BOPAlgo_Algo::BOPAlgo_Algo()
26 :
27   BOPAlgo_Options(NCollection_BaseAllocator::CommonBaseAllocator())
28 {}
29 //=======================================================================
30 // function: 
31 // purpose: 
32 //=======================================================================
33 BOPAlgo_Algo::BOPAlgo_Algo
34   (const Handle(NCollection_BaseAllocator)& theAllocator)
35 :
36   BOPAlgo_Options(theAllocator)
37 {}
38
39 //=======================================================================
40 // function: ~
41 // purpose: 
42 //=======================================================================
43 BOPAlgo_Algo::~BOPAlgo_Algo()
44 {
45 }
46
47 //=======================================================================
48 // function: CheckData
49 // purpose: 
50 //=======================================================================
51 void BOPAlgo_Algo::CheckData()
52 {
53   GetReport()->Clear(Message_Fail);
54 }
55 //=======================================================================
56 // function: CheckResult
57 // purpose: 
58 //=======================================================================
59 void BOPAlgo_Algo::CheckResult()
60 {
61   GetReport()->Clear(Message_Fail);
62 }