/usr/include/oce/TNaming_Builder.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 | // 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_Builder_HeaderFile
#define _TNaming_Builder_HeaderFile
#include <Standard.hxx>
#include <Standard_DefineAlloc.hxx>
#include <Standard_Macro.hxx>
#include <Handle_TNaming_UsedShapes.hxx>
#include <Handle_TNaming_NamedShape.hxx>
class TNaming_UsedShapes;
class TNaming_NamedShape;
class Standard_ConstructionError;
class TDF_Label;
class TopoDS_Shape;
//! A tool to create and maintain topological attributes.
//! Constructor creates an empty
//! TNaming_NamedShape attribute at the given
//! label. It allows adding "old shape" and "new
//! shape" pairs with the specified evolution to this
//! named shape. One evolution type per one
//! builder must be used.
class TNaming_Builder
{
public:
DEFINE_STANDARD_ALLOC
//! Create an Builder.
//! Warning: Before Addition copies the current Value, and clear
Standard_EXPORT TNaming_Builder(const TDF_Label& aLabel);
//! Records the shape newShape which was
//! generated during a topological construction.
//! As an example, consider the case of a face
//! generated in construction of a box.
Standard_EXPORT void Generated (const TopoDS_Shape& newShape) ;
//! Records the shape newShape which was
//! generated from the shape oldShape during a topological construction.
//! As an example, consider the case of a face
//! generated from an edge in construction of a prism.
Standard_EXPORT void Generated (const TopoDS_Shape& oldShape, const TopoDS_Shape& newShape) ;
//! Records the shape oldShape which was deleted from the current label.
//! As an example, consider the case of a face removed by a Boolean operation.
Standard_EXPORT void Delete (const TopoDS_Shape& oldShape) ;
//! Records the shape newShape which is a
//! modification of the shape oldShape.
//! As an example, consider the case of a face split
//! or merged in a Boolean operation.
Standard_EXPORT void Modify (const TopoDS_Shape& oldShape, const TopoDS_Shape& newShape) ;
//! Add a Shape to the current label , This Shape is
//! unmodified. Used for example to define a set
//! of shapes under a label.
Standard_EXPORT void Select (const TopoDS_Shape& aShape, const TopoDS_Shape& inShape) ;
//! Returns the NamedShape which has been built or is under construction.
Standard_EXPORT Handle(TNaming_NamedShape) NamedShape() const;
protected:
private:
Handle(TNaming_UsedShapes) myShapes;
Handle(TNaming_NamedShape) myAtt;
};
#endif // _TNaming_Builder_HeaderFile
|