0024567: Coding rules - eliminate GCC warning -Wignored-qualifiers
[occt.git] / src / DDF / DDF_Transaction.cxx
1 // Created by: DAUTRY Philippe
2 // Copyright (c) 1997-1999 Matra Datavision
3 // Copyright (c) 1999-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 //              -------------------
17 // Version:     0.0
18 //Version       Date            Purpose
19 //              0.0     Nov  4 1997     Creation
20
21 #include <DDF_Transaction.hxx>
22 #include <Standard_DomainError.hxx>
23 #include <Standard_NullObject.hxx>
24 #include <Standard_Type.hxx>
25 #include <TDF_Data.hxx>
26 #include <TDF_Delta.hxx>
27
28 //=======================================================================
29 //function : DDF_Transaction
30 //purpose  : 
31 //=======================================================================
32 DDF_Transaction::DDF_Transaction()
33 : myTransaction( TCollection_AsciiString() )
34 {}
35
36
37 //=======================================================================
38 //function : DDF_Transaction
39 //purpose  : 
40 //=======================================================================
41
42 DDF_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
52 Standard_Integer DDF_Transaction::Open()
53 { return myTransaction.Open(); }
54
55
56 //=======================================================================
57 //function : Commit
58 //purpose  : 
59 //=======================================================================
60
61 Handle(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
70 void DDF_Transaction::Abort()
71 { myTransaction.Abort(); }
72
73
74 //=======================================================================
75 //function : Data
76 //purpose  : 
77 //=======================================================================
78
79 Handle(TDF_Data) DDF_Transaction::Data() const
80 { return myTransaction.Data(); }
81
82
83 //=======================================================================
84 //function : Transaction
85 //purpose  : 
86 //=======================================================================
87
88 Standard_Integer DDF_Transaction::Transaction() const
89 { return myTransaction.Transaction(); }
90
91
92 //=======================================================================
93 //function : IsOpen
94 //purpose  : 
95 //=======================================================================
96
97 Standard_Boolean DDF_Transaction::IsOpen() const
98 { return myTransaction.IsOpen(); }
99