Itasca C++ Interface
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Modules Pages
irangeelementsurface.h
Go to the documentation of this file.
1 #pragma once
2 // irangeelementsurface.h
3 
11 
12 namespace itascaxd {
16  public:
18  inline static const TType type_ = 0x4ed7e54c;
19 
21  virtual bool getMech() const=0;
23  virtual bool getFluid() const=0;
25  virtual bool getTherm() const=0;
28  virtual bool getOr() const=0;
29 
30  // slots
32  virtual void setMech(bool b)=0;
34  virtual void setFluid(bool b)=0;
36  virtual void setTherm(bool b)=0;
38  virtual void setOr(bool b)=0;
39 
40  // signals
42  virtual void mechChanged(bool b)=0;
44  virtual void fluidChanged(bool b)=0;
46  virtual void thermChanged(bool b)=0;
48  virtual void orChanged(bool b)=0;
49  };
50 } // namespace zone
51  // EoF
Interface to a filter element, which is a member of a IRange.
virtual void setTherm(bool b)=0
Slot, sets the therm flag filter. See getThrem().
virtual bool getOr() const =0
static const TType type_
The type identification number for this class, for use in convert_cast() and convert_getcast().
Definition: irangeelementsurface.h:18
virtual bool getMech() const =0
Returns TRUE if filtering by null mechanical model to determine surface.
virtual void thermChanged(bool b)=0
Signal emitted when the therm flag filter has changed.
virtual void mechChanged(bool b)=0
Signal emitted when the mechanical flag filter has changed.
virtual void setFluid(bool b)=0
Slot, sets the fluid flag filter. See getFluid().
virtual void setMech(bool b)=0
Slot, sets the mechanical flag filter. See getMech().
unsigned int TType
class type indicator
Definition: basedef.h:41
virtual void fluidChanged(bool b)=0
Signal emitted when the fluid flag filter has changed.
virtual bool getTherm() const =0
Returns TRUE if filtering by null thermal model to determine surface.
virtual bool getFluid() const =0
Returns TRUE if filtering by null fluid model to determine surface.
Itasca Library standard namespace, specific to 2D or 3D.
Definition: icontactmodule.h:4
Interface to a filter element that allows user to filter based on connection to a "surface" of the zo...
Definition: irangeelementsurface.h:15
virtual void orChanged(bool b)=0
Signal emitted when the or condition has changed.
virtual void setOr(bool b)=0
Slot, sets the 'OR' condition flag. See getOr()