Itasca C++ Interface
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Modules Pages
icontactarray.h
Go to the documentation of this file.
1 #pragma once
2 // icontactarray.h
3 
9 namespace itasca
10 {
11  class IContainer;
12  class IThing;
13 }
14 
15 namespace block
16 {
17  using namespace itasca;
18 
19  class IContactThing;
20 
24  {
25  public:
26 
28  virtual const IThing * getIThing() const=0;
30  virtual IThing * getIThing()=0;
32  virtual const IContainer * getIContainer() const=0;
34  virtual IContainer * getIContainer() =0;
36  virtual const IContactThing * findContactWithID(quint64 id) const=0;
38  virtual IContactThing * findContactWithID(quint64 id)=0;
40  virtual quint32 getContactType() const=0;
42  virtual quint64 getNumContacts() const=0;
44  virtual IContactThing * findContact(const DVect3 &dv)=0;
45 
47  virtual uint getContactExtraNotice() const=0;
49  virtual uint getGroupNotice() const=0;
51  virtual uint getModelNotice() const=0;
53  virtual uint getMaterialNotice() const=0;
54  };
55 
56 } // end namespace block
57 // EOF
Definition: icontactthing.h:30
namespace Itasca
Definition: basememory.cpp:9
Base class for items that will be stored in containers.
Definition: ithing.h:31
Interface for containers of IThings.
Definition: icontainer.h:23
This interface provides access to contact thing array.
Definition: icontactarray.h:23