Itasca C++ Interface
|
Interface for accessing the global list of attachments, IAttachPoint. More...
#include <iattachlist.h>
Public Member Functions | |
virtual const IThing * | getIThing () const =0 |
returns a const IThing pointer | |
virtual IThing * | getIThing ()=0 |
returns a IThing pointer | |
virtual const IContainer * | getIContainer () const =0 |
Returns a const pointer to the IContainer interface representing the global list of attachments. | |
virtual IContainer * | getIContainer ()=0 |
Returns a pointer to the IContainer interface representing the global list of attachments. | |
virtual quint32 | getAttachType () const =0 |
Returns the attachment type for the TypeEntry system. | |
virtual const IAttachPoint * | getFirstAttach () const =0 |
virtual IAttachPoint * | getFirstAttach ()=0 |
virtual const IAttachPoint * | findAttachWithID (quint64 id) const =0 |
Returns a pointer to the attachment, IAttachPoint, that matches id. . | |
virtual uint | getAttachPointNotice () const =0 |
Returns the notification code for attachments. | |
virtual IAttachPoint * | createAttach (IAttachPoint::ClassType type, IGp *slave, IThing *it1, IThing *it2, quint32 faceNo, bool snap)=0 |
Static Public Attributes | |
static const TType | type_ = 0x4e5d11ef |
The type identification number for this class, for use in convert_cast() and convert_getcast(). | |
Interface for accessing the global list of attachments, IAttachPoint.
|
pure virtual |
Creates an attachment
type | is the attachment type (gridpoint, edge or face) |
slave | is the the slave gridpoint |
it1,it2,faceNo | For attachment type gridpoint it1 is the master gridpoint. Parameters it2 and faceNo are not used. For type edge, it1 and it2 are the gridpoint pointers that form of the edge. Parameter faceNo is not used. For type face, it1 is the zone pointer, it2 is not used. faceNo is the face number, valid values are 0 to 5. |
snap | see ATTACH command reference for behavior. |
|
pure virtual |
Returns a const pointer to the first attachment, IAttachPoint, in the list, or 0 if list is empty. Use in conjunction with IAttachPoint::getNext();
|
pure virtual |
Returns a pointer to the first attachment, IAttachPoint, in the list, or 0 if list is empty.
Use in conjunction with IAttachPoint::getNext();