/usr/include/oce/TNaming_Iterator.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 | // 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_Iterator_HeaderFile
#define _TNaming_Iterator_HeaderFile
#include <Standard.hxx>
#include <Standard_DefineAlloc.hxx>
#include <Standard_Macro.hxx>
#include <TNaming_PtrNode.hxx>
#include <Standard_Integer.hxx>
#include <Handle_TNaming_NamedShape.hxx>
#include <Standard_Boolean.hxx>
#include <TNaming_Evolution.hxx>
class Standard_NoMoreObject;
class Standard_NoSuchObject;
class TNaming_NewShapeIterator;
class TNaming_OldShapeIterator;
class TNaming_NamedShape;
class TDF_Label;
class TopoDS_Shape;
//! A tool to visit the contents of a named shape attribute.
//! Pairs of shapes in the attribute are iterated, one
//! being the pre-modification or the old shape, and
//! the other the post-modification or the new shape.
//! This allows you to have a full access to all
//! contents of an attribute. If, on the other hand, you
//! are only interested in topological entities stored
//! in the attribute, you can use the functions
//! GetShape and CurrentShape in TNaming_Tool.
class TNaming_Iterator
{
public:
DEFINE_STANDARD_ALLOC
//! Iterates on all the history records in
//! <anAtt>.
Standard_EXPORT TNaming_Iterator(const Handle(TNaming_NamedShape)& anAtt);
//! Iterates on all the history records in
//! the current transaction
Standard_EXPORT TNaming_Iterator(const TDF_Label& aLabel);
//! Iterates on all the history records in
//! the transaction <aTrans>
Standard_EXPORT TNaming_Iterator(const TDF_Label& aLabel, const Standard_Integer aTrans);
//! Returns True if there is a current Item in
//! the iteration.
Standard_Boolean More() const;
//! Moves the iteration to the next Item
Standard_EXPORT void Next() ;
//! Returns the old shape in this iterator object.
//! This shape can be a null one.
Standard_EXPORT const TopoDS_Shape& OldShape() const;
//! Returns the new shape in this iterator object.
Standard_EXPORT const TopoDS_Shape& NewShape() const;
//! Returns true if the new shape is a modification (split,
//! fuse,etc...) of the old shape.
Standard_EXPORT Standard_Boolean IsModification() const;
Standard_EXPORT TNaming_Evolution Evolution() const;
friend class TNaming_NewShapeIterator;
friend class TNaming_OldShapeIterator;
protected:
private:
TNaming_PtrNode myNode;
Standard_Integer myTrans;
};
#include <TNaming_Iterator.lxx>
#endif // _TNaming_Iterator_HeaderFile
|