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
|
// 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 _IFSelect_PacketList_HeaderFile
#define _IFSelect_PacketList_HeaderFile
#include <Standard.hxx>
#include <Standard_DefineHandle.hxx>
#include <Handle_IFSelect_PacketList.hxx>
#include <Handle_Interface_InterfaceModel.hxx>
#include <TColStd_Array1OfInteger.hxx>
#include <Interface_IntList.hxx>
#include <Standard_Integer.hxx>
#include <Standard_Boolean.hxx>
#include <TCollection_AsciiString.hxx>
#include <MMgt_TShared.hxx>
#include <Standard_CString.hxx>
#include <Handle_Standard_Transient.hxx>
#include <Handle_TColStd_HSequenceOfTransient.hxx>
class Interface_InterfaceModel;
class Interface_InterfaceError;
class Standard_Transient;
class TColStd_HSequenceOfTransient;
class Interface_EntityIterator;
//! This class gives a simple way to return then consult a
//! list of packets, determined from the content of a Model,
//! by various criteria.
//!
//! It allows to describe several lists with entities from a
//! given model, possibly more than one list knowing every entity,
//! and to determine the remaining list (entities in no lists) and
//! the duplications (with their count).
class IFSelect_PacketList : public MMgt_TShared
{
public:
//! Creates a PackList, empty, ready to receive entities from a
//! given Model
Standard_EXPORT IFSelect_PacketList(const Handle(Interface_InterfaceModel)& model);
//! Sets a name to a packet list : this makes easier a general
//! routine to print it. Default is "Packets"
Standard_EXPORT void SetName (const Standard_CString name) ;
//! Returns the recorded name for a packet list
Standard_EXPORT Standard_CString Name() const;
//! Returns the Model of reference
Standard_EXPORT Handle(Interface_InterfaceModel) Model() const;
//! Declares a new Packet, ready to be filled
//! The entities to be added will be added to this Packet
Standard_EXPORT void AddPacket() ;
//! Adds an entity from the Model into the current packet for Add
Standard_EXPORT void Add (const Handle(Standard_Transient)& ent) ;
//! Adds an list of entities into the current packet for Add
Standard_EXPORT void AddList (const Handle(TColStd_HSequenceOfTransient)& list) ;
//! Returns the count of non-empty packets
Standard_EXPORT Standard_Integer NbPackets() const;
//! Returns the count of entities in a Packet given its rank, or 0
Standard_EXPORT Standard_Integer NbEntities (const Standard_Integer numpack) const;
//! Returns the content of a Packet given its rank
//! Null Handle if <numpack> is out of range
Standard_EXPORT Interface_EntityIterator Entities (const Standard_Integer numpack) const;
//! Returns the highest number of packets which know a same entity
//! For no duplication, should be one
Standard_EXPORT Standard_Integer HighestDuplicationCount() const;
//! Returns the count of entities duplicated :
//! <count> times, if <andmore> is False, or
//! <count> or more times, if <andmore> is True
//! See Duplicated for more details
Standard_EXPORT Standard_Integer NbDuplicated (const Standard_Integer count, const Standard_Boolean andmore) const;
//! Returns a list of entities duplicated :
//! <count> times, if <andmore> is False, or
//! <count> or more times, if <andmore> is True
//! Hence, count=2 & andmore=True gives all duplicated entities
//! count=1 gives non-duplicated entities (in only one packet)
//! count=0 gives remaining entities (in no packet at all)
Standard_EXPORT Interface_EntityIterator Duplicated (const Standard_Integer count, const Standard_Boolean andmore) const;
DEFINE_STANDARD_RTTI(IFSelect_PacketList)
protected:
private:
Handle(Interface_InterfaceModel) themodel;
TColStd_Array1OfInteger thedupls;
Interface_IntList thepacks;
TColStd_Array1OfInteger theflags;
Standard_Integer thelast;
Standard_Boolean thebegin;
TCollection_AsciiString thename;
};
#endif // _IFSelect_PacketList_HeaderFile
|