Itasca C++ Interface
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Modules Pages
isurfacelist.h
Go to the documentation of this file.
1 //isurfacelist.h
2 #pragma once
3 
10 namespace itasca
11 {
12  class IContainer;
13 }
14 
15 namespace zone
16 {
17  class ISurface;
18 
22  {
23  public:
25  virtual const IContainer * getIContainer() const=0;
27  virtual IContainer * getIContainer() =0;
30  virtual const ISurface * getFirstSurface() const=0;
33  virtual ISurface * getFirstSurface()=0;
35  virtual const ISurface * findSurfaceWithID(quint64 id) const=0;
37  virtual ISurface * findSurfaceWithID(quint64 id)=0;
39  virtual quint32 getSurfaceType() const=0;
40  };
41 } // namespace zone
42 // EoF
43 
virtual const ISurface * findSurfaceWithID(quint64 id) const =0
Given a surface id, returns a const pointer to the surface object.
namespace Itasca
Definition: basememory.cpp:9
Interface to provide access to surfaces, see command GEN SURFACE.
Definition: isurface.h:18
virtual quint32 getSurfaceType() const =0
Returns the general surface type.
virtual const ISurface * getFirstSurface() const =0
Interface to the global list of all surfaces, see command GEN SURFACE.
Definition: isurfacelist.h:21
Interface for containers of IThings.
Definition: icontainer.h:23
virtual const IContainer * getIContainer() const =0
Returns a const pointer to the IContainer interface representing the global list of surfaces.