Itasca C++ Interface
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Modules Pages
iselproparray.h
Go to the documentation of this file.
1 #pragma once
2 // ibeamarray.h
3 
9 namespace itasca
10 {
11  class IContainer;
12  class IThing;
13 }
14 
15 namespace block
16 {
17  using namespace itasca;
18 
21  {
22  public:
23 
25  virtual const IThing * getIThing() const=0;
27  virtual IThing * getIThing()=0;
29  virtual const IContainer * getIContainer() const=0;
31  virtual IContainer * getIContainer() =0;
32  };
33 
34 } // end namespace block
35 // EOF
namespace Itasca
Definition: basememory.cpp:9
Base class for items that will be stored in containers.
Definition: ithing.h:31
This interface provides access to SelProp array.
Definition: iselproparray.h:20
Interface for containers of IThings.
Definition: icontainer.h:23