/usr/include/oce/TDF_Delta.hxx is in liboce-ocaf-lite-dev 0.17.2-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 | // This file is generated by WOK (CPPExt).
// Please do not edit this file; modify original file instead.
// The copyright and license terms as defined for the original file apply to
// this header file considered to be the "object code" form of the original source.
#ifndef _TDF_Delta_HeaderFile
#define _TDF_Delta_HeaderFile
#include <Standard.hxx>
#include <Standard_DefineHandle.hxx>
#include <Handle_TDF_Delta.hxx>
#include <Standard_Integer.hxx>
#include <TDF_AttributeDeltaList.hxx>
#include <TCollection_ExtendedString.hxx>
#include <MMgt_TShared.hxx>
#include <Handle_TDF_AttributeDelta.hxx>
#include <Standard_Boolean.hxx>
#include <Standard_OStream.hxx>
class Standard_OutOfRange;
class TDF_Data;
class TDF_AttributeDelta;
class TDF_LabelList;
class TDF_AttributeDeltaList;
class TCollection_ExtendedString;
//! A set of AttributeDelta for a given transaction
//! number and reference time number.
//! A delta set is available at <aSourceTime>. If
//! applied, it restores the TDF_Data in the state it
//! was at <aTargetTime>.
class TDF_Delta : public MMgt_TShared
{
public:
//! Creates a delta.
Standard_EXPORT TDF_Delta();
//! Returns true if there is nothing to undo.
Standard_Boolean IsEmpty() const;
//! Returns true if the Undo action of <me> is
//! applicable at <aCurrentTime>.
Standard_Boolean IsApplicable (const Standard_Integer aCurrentTime) const;
//! Returns the field <myBeginTime>.
Standard_Integer BeginTime() const;
//! Returns the field <myEndTime>.
Standard_Integer EndTime() const;
//! Adds in <aLabelList> the labels of the attribute deltas.
//! Caution: <aLabelList> is not cleared before use.
Standard_EXPORT void Labels (TDF_LabelList& aLabelList) const;
//! Returns the field <myAttDeltaList>.
const TDF_AttributeDeltaList& AttributeDeltas() const;
//! Returns a name associated with this delta.
TCollection_ExtendedString Name() const;
//! Associates a name <theName> with this delta
void SetName (const TCollection_ExtendedString& theName) ;
Standard_EXPORT void Dump (Standard_OStream& OS) const;
friend class TDF_Data;
DEFINE_STANDARD_RTTI(TDF_Delta)
protected:
//! Validates <me> at <aBeginTime>. If applied, it
//! restores the TDF_Data in the state it was at
//! <anEndTime>. Reserved to TDF_Data.
Standard_EXPORT void Validity (const Standard_Integer aBeginTime, const Standard_Integer anEndTime) ;
//! Adds an AttributeDelta to the list. Reserved to
//! TDF_Data.
Standard_EXPORT void AddAttributeDelta (const Handle(TDF_AttributeDelta)& anAttributeDelta) ;
private:
Standard_EXPORT void BeforeOrAfterApply (const Standard_Boolean before) const;
Standard_EXPORT void Apply() ;
Standard_Integer myBeginTime;
Standard_Integer myEndTime;
TDF_AttributeDeltaList myAttDeltaList;
TCollection_ExtendedString myName;
};
#include <TDF_Delta.lxx>
#endif // _TDF_Delta_HeaderFile
|