/usr/include/oce/TNaming_NamedShape.hxx is in liboce-ocaf-dev 0.18.2-2build1.
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 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 | // 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 _TNaming_NamedShape_HeaderFile
#define _TNaming_NamedShape_HeaderFile
#include <Standard.hxx>
#include <Standard_DefineHandle.hxx>
#include <Handle_TNaming_NamedShape.hxx>
#include <TNaming_PtrNode.hxx>
#include <TNaming_Evolution.hxx>
#include <Standard_Integer.hxx>
#include <TDF_Attribute.hxx>
#include <Standard_Boolean.hxx>
#include <Handle_TDF_Attribute.hxx>
#include <Handle_TDF_DeltaOnModification.hxx>
#include <Handle_TDF_DeltaOnRemoval.hxx>
#include <Handle_TDF_RelocationTable.hxx>
#include <Handle_TDF_DataSet.hxx>
#include <Handle_TDF_AttributeDelta.hxx>
#include <Standard_OStream.hxx>
class TNaming_Builder;
class TNaming_Iterator;
class TNaming_NewShapeIterator;
class TNaming_OldShapeIterator;
class Standard_GUID;
class TopoDS_Shape;
class TDF_Attribute;
class TDF_DeltaOnModification;
class TDF_DeltaOnRemoval;
class TDF_RelocationTable;
class TDF_DataSet;
class TDF_AttributeDelta;
//! The basis to define an attribute for the storage of
//! topology and naming data.
//! This attribute contains two parts:
//! - The type of evolution, a term of the
//! enumeration TNaming_Evolution
//! - A list of pairs of shapes called the "old"
//! shape and the "new" shape. The meaning
//! depends on the type of evolution.
class TNaming_NamedShape : public TDF_Attribute
{
public:
//! class method
//! ============
//! Returns the GUID for named shapes.
Standard_EXPORT static const Standard_GUID& GetID() ;
Standard_EXPORT TNaming_NamedShape();
Standard_EXPORT Standard_Boolean IsEmpty() const;
//! Returns the shapes contained in <NS>. Returns a null
//! shape if IsEmpty.
Standard_EXPORT TopoDS_Shape Get() const;
//! Returns the Evolution of the attribute.
TNaming_Evolution Evolution() const;
//! Returns the Version of the attribute.
Standard_Integer Version() const;
//! Set the Version of the attribute.
void SetVersion (const Standard_Integer version) ;
Standard_EXPORT void Clear() ;
~TNaming_NamedShape()
{
Clear();
}
//! Returns the ID of the attribute.
const Standard_GUID& ID() const;
//! Copies the attribute contents into a new other
//! attribute. It is used by Backup().
Standard_EXPORT virtual Handle(TDF_Attribute) BackupCopy() const;
//! Restores the contents from <anAttribute> into this
//! one. It is used when aborting a transaction.
Standard_EXPORT virtual void Restore (const Handle(TDF_Attribute)& anAttribute) ;
//! Makes a DeltaOnModification between <me> and
//! <anOldAttribute.
Standard_EXPORT virtual Handle(TDF_DeltaOnModification) DeltaOnModification (const Handle(TDF_Attribute)& anOldAttribute) const;
//! Applies a DeltaOnModification to <me>.
Standard_EXPORT virtual void DeltaOnModification (const Handle(TDF_DeltaOnModification)& aDelta) ;
//! Makes a DeltaOnRemoval on <me> because <me> has
//! disappeared from the DS.
Standard_EXPORT virtual Handle(TDF_DeltaOnRemoval) DeltaOnRemoval() const;
//! Returns an new empty attribute from the good end
//! type. It is used by the copy algorithm.
Standard_EXPORT virtual Handle(TDF_Attribute) NewEmpty() const;
//! This method is different from the "Copy" one,
//! because it is used when copying an attribute from
//! a source structure into a target structure. This
//! method pastes the current attribute to the label
//! corresponding to the insertor. The pasted
//! attribute may be a brand new one or a new version
//! of the previous one.
Standard_EXPORT virtual void Paste (const Handle(TDF_Attribute)& intoAttribute, const Handle(TDF_RelocationTable)& aRelocTationable) const;
//! Adds the directly referenced attributes and labels
//! to <aDataSet>. "Directly" means we have only to
//! look at the first level of references.
Standard_EXPORT virtual void References (const Handle(TDF_DataSet)& aDataSet) const;
Standard_EXPORT virtual void BeforeRemoval() ;
//! Something to do before applying <anAttDelta>
Standard_EXPORT virtual Standard_Boolean BeforeUndo (const Handle(TDF_AttributeDelta)& anAttDelta, const Standard_Boolean forceIt = Standard_False) ;
//! Something to do after applying <anAttDelta>.
Standard_EXPORT virtual Standard_Boolean AfterUndo (const Handle(TDF_AttributeDelta)& anAttDelta, const Standard_Boolean forceIt = Standard_False) ;
//! Dumps the attribute on <aStream>.
Standard_EXPORT virtual Standard_OStream& Dump (Standard_OStream& anOS) const;
friend class TNaming_Builder;
friend class TNaming_Iterator;
friend class TNaming_NewShapeIterator;
friend class TNaming_OldShapeIterator;
DEFINE_STANDARD_RTTI(TNaming_NamedShape)
protected:
private:
//! Adds an evolution
Standard_EXPORT void Add (TNaming_PtrNode& Evolution) ;
TNaming_PtrNode myNode;
TNaming_Evolution myEvolution;
Standard_Integer myVersion;
};
#include <TNaming_NamedShape.lxx>
#endif // _TNaming_NamedShape_HeaderFile
|