Itasca C++ Interface
Loading...
Searching...
No Matches
iselproparray.h
Go to the documentation of this file.
1#pragma once
2// ibeamarray.h
3
9namespace itasca
10{
11 class IContainer;
12 class IThing;
13}
14
15namespace 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
This interface provides access to SelProp array.
Definition iselproparray.h:21
virtual const IContainer * getIContainer() const =0
Returns a const pointer to the IContainer interface representing the global list of selprops.
virtual const IThing * getIThing() const =0
Returns a const pointer to an IThing interface representing the ISelPropArray.
virtual IContainer * getIContainer()=0
Returns a pointer to the IContainer interface representing the global list of selprops.
virtual IThing * getIThing()=0
Returns a pointer to an IThing interface representing the ISelPropArray.
Interface for containers of IThings.
Definition icontainer.h:21
Base class for items that will be stored in containers.
Definition ithing.h:30
namespace Itasca
Definition basememory.cpp:10