Itasca C++ Interface
Loading...
Searching...
No Matches
iapplyitemlist.h
1//#pragma once
2//
3//#include "utility/interface/icontainer.h"
4//
5//namespace zone {
6// using namespace itasca;
7//
8// class IApplyItem;
9//
10// /// \brief Class provides access to the global list of all IAppItem objects in the model.
11// class IApplyItemList {
12// public:
13// /// The type identification number for this class, for use in convert_cast() and convert_getcast().
14// static const TType type_ = 0x5318f940;
15// /// returns a const IThing pointer
16// virtual const IThing * getIThing() const=0;
17// /// returns a IThing pointer
18// virtual IThing * getIThing()=0;
19// /// Returns a const pointer to the IContainer
20// virtual const IContainer * getIContainer() const=0;
21// /// Returns a pointer to the IContainer
22// virtual IContainer * getIContainer() =0;
23// };
24//} // namespace zone
25