0024098: Exception Standard_OutOfMemory raised during topological operation.
[occt.git] / src / BOPDS / BOPDS_PassKeyBoolean.cdl
CommitLineData
4e57c75e 1-- Created by: Peter KURNEV
2-- Copyright (c) 2010-2012 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-- The content of this file is subject to the Open CASCADE Technology Public
8-- License Version 6.5 (the "License"). You may not use the content of this file
9-- except in compliance with the License. Please obtain a copy of the License
10-- at http://www.opencascade.org and read it completely before using this file.
11--
12-- The Initial Developer of the Original Code is Open CASCADE S.A.S., having its
13-- main offices at: 1, place des Freres Montgolfier, 78280 Guyancourt, France.
14--
15-- The Original Code and all software distributed under the License is
16-- distributed on an "AS IS" basis, without warranty of any kind, and the
17-- Initial Developer hereby disclaims all such warranties, including without
18-- limitation, any warranties of merchantability, fitness for a particular
19-- purpose or non-infringement. Please see the License for the specific terms
20-- and conditions governing the rights and limitations under the License.
21
22
23class PassKeyBoolean from BOPDS
24 inherits PassKey from BOPDS
25 ---Purpose:
26
27uses
28 BaseAllocator from BOPCol
29
30--raises
31
32is
33 Create
34 returns PassKeyBoolean from BOPDS;
35 ---C++: inline
36 ---C++: alias "virtual ~BOPDS_PassKeyBoolean();"
37
38 Create (theAllocator: BaseAllocator from BOPCol)
39 returns PassKeyBoolean from BOPDS;
40 ---C++: inline
41
42 Create(Other:PassKeyBoolean from BOPDS)
43 returns PassKeyBoolean from BOPDS;
44 ---C++: inline
45
46 SetFlag(me:out;
47 theFlag: Boolean from Standard);
48 ---C++: inline
49 ---C++: alias "BOPDS_PassKeyBoolean& operator =(const BOPDS_PassKeyBoolean& );"
50
51 Flag(me)
52 returns Boolean from Standard;
53 ---C++: inline
54
55fields
56 myFlag: Boolean from Standard is protected;
57
58end PassKeyBoolean;