Itasca C++ Interface
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Modules Pages
isubcontactarray.h
Go to the documentation of this file.
1 #pragma once
2 // isubcontactarray.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 ISubcontactThing;
20 
25  {
26  public:
27 
29  virtual const IThing * getIThing() const=0;
31  virtual IThing * getIThing()=0;
33  virtual const IContainer * getIContainer() const=0;
35  virtual IContainer * getIContainer() =0;
37  virtual const ISubcontactThing * findSubcontactWithID(quint64 id) const=0;
39  virtual ISubcontactThing * findSubcontactWithID(quint64 id)=0;
41  //virtual const SubcontactThing * findSubcontact(const DVect &loc) const = 0;
43  virtual quint32 getSubcontactType() const=0;
45  virtual quint64 getNumSubcontacts() const=0;
47  virtual uint getGroupNotice() const=0;
49  virtual uint getSubcontactExtraNotice() const=0;
51  virtual uint getModelNotice() const=0;
53  virtual uint getPorePressureNotice() const=0;
56  virtual const ISubcontactThing* findPartner(const ISubcontactThing* cx, double tol = -1) const=0;
57  };
58 
59 } // end namespace block
60 // EOF
namespace Itasca
Definition: basememory.cpp:9
Base class for items that will be stored in containers.
Definition: ithing.h:31
This is the interface for SubcontactThing, a class that holds extra data not in the fortran arrays....
Definition: isubcontactthing.h:31
Interface for containers of IThings.
Definition: icontainer.h:23
Container to store SubcontactThings. ID of SubcontactThing is stored in offset $KCXCPP in Fortran sub...
Definition: isubcontactarray.h:24