0025266: Debug statements in the source are getting flushed on to the console
[occt.git] / src / DDF / DDF_Transaction.cxx
CommitLineData
b311480e 1// Created by: DAUTRY Philippe
2// Copyright (c) 1997-1999 Matra Datavision
973c2be1 3// Copyright (c) 1999-2014 OPEN CASCADE SAS
b311480e 4//
973c2be1 5// This file is part of Open CASCADE Technology software library.
b311480e 6//
d5f74e42 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
973c2be1 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.
b311480e 12//
973c2be1 13// Alternatively, this file may be used under the terms of Open CASCADE
14// commercial license or contractual agreement.
b311480e 15
7fd59977 16// -------------------
7fd59977 17
18// Version: 0.0
b311480e 19//Version Date Purpose
7fd59977 20// 0.0 Nov 4 1997 Creation
21
22
23
24#include <DDF_Transaction.ixx>
25
26
27//=======================================================================
28//function : DDF_Transaction
29//purpose :
30//=======================================================================
31
32DDF_Transaction::DDF_Transaction()
33: myTransaction( TCollection_AsciiString() )
34{}
35
36
37//=======================================================================
38//function : DDF_Transaction
39//purpose :
40//=======================================================================
41
42DDF_Transaction::DDF_Transaction(const Handle(TDF_Data)& aDF)
43: myTransaction( TCollection_AsciiString() )
44{ myTransaction.Initialize(aDF); }
45
46
47//=======================================================================
48//function : Open
49//purpose :
50//=======================================================================
51
52Standard_Integer DDF_Transaction::Open()
53{ return myTransaction.Open(); }
54
55
56//=======================================================================
57//function : Commit
58//purpose :
59//=======================================================================
60
61Handle(TDF_Delta) DDF_Transaction::Commit(const Standard_Boolean withDelta)
62{ return myTransaction.Commit(withDelta); }
63
64
65//=======================================================================
66//function : Abort
67//purpose : alias ~
68//=======================================================================
69
70void DDF_Transaction::Abort()
71{ myTransaction.Abort(); }
72
73
74//=======================================================================
75//function : Data
76//purpose :
77//=======================================================================
78
79Handle(TDF_Data) DDF_Transaction::Data() const
80{ return myTransaction.Data(); }
81
82
83//=======================================================================
84//function : Transaction
85//purpose :
86//=======================================================================
87
88Standard_Integer DDF_Transaction::Transaction() const
89{ return myTransaction.Transaction(); }
90
91
92//=======================================================================
93//function : IsOpen
94//purpose :
95//=======================================================================
96
97Standard_Boolean DDF_Transaction::IsOpen() const
98{ return myTransaction.IsOpen(); }
99