Itasca C++ Interface
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Modules Pages
ifaceblockarray.h
Go to the documentation of this file.
1 #pragma once
2 // ifaceblockaarray.h
3 
10 #include "iblockdef.h"
11 
12 namespace itasca
13 {
14  class IContainer;
15  class IThing;
16 }
17 
18 namespace block
19 {
20  using namespace itasca;
21 
22  class IBlockThing;
23  class FaceBlockThing;
24 
29  {
30  public:
31 
33  virtual const IThing * getIThing() const=0;
35  virtual IThing * getIThing()=0;
37  virtual const IContainer * getIContainer() const=0;
39  virtual IContainer * getIContainer() =0;
41  virtual const IBlockThing * findBlockWithID(quint64 id) const=0;
43  virtual IBlockThing * findBlockWithID(quint64 id)=0;
45  virtual quint32 getBlockType() const = 0;
46 
48  virtual uint getBlockExtraNotice() const=0;
50  virtual uint getGroupNotice() const=0;
52  virtual uint getGeometryNotice() const=0;
54  virtual uint getJoinNotice() const=0;
56  virtual uint getBoundaryNotice() const=0;
58  virtual uint getMaterialNotice() const=0;
60  virtual uint getHideNotice() const=0;
62  virtual FaceBlockThing * findBlock(const DVect3 &dv)=0;
63 
64  };
65 
66 } // end namespace block
67 // EOF
namespace Itasca
Definition: basememory.cpp:9
Base class for items that will be stored in containers.
Definition: ithing.h:31
Fortran to C++ type declarations.
Container to store blockThings that are face blocks. ID of BlockThing is stored in offset $KBID in Fo...
Definition: ifaceblockarray.h:28
This is the interface for BlockThing, a class that holds extra data not in the fortran arrays....
Definition: iblockthing.h:31
Interface for containers of IThings.
Definition: icontainer.h:23