Itasca C++ Interface
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Modules Pages
irangeelementorientation.h
Go to the documentation of this file.
1 #pragma once
2 // irangeelementorientation.h
3 
10 
11 namespace zone
12 {
13  using namespace itascaxd;
14 
18  public:
20  inline static const TType type_ = 0x4c815be8;
22  virtual Orientation getOrientation() const=0;
24  virtual double getTolerance() const=0;
25 
26  // slots
28  virtual void setOrientation(const Orientation &o)=0;
30  virtual void setTolerance(const double &d)=0;
31 
32  // signals
34  virtual void orientationChanged(const Orientation &o)=0;
36  virtual void toleranceChanged(const double &d)=0;
37  };
38 } // namespace zone
39 // EoF
40 
Interface to a filter element, which is a member of a IRange.
virtual void orientationChanged(const Orientation3 &o)=0
Definition: irangeelementorientation.h:6
virtual Orientation3 getOrientation() const =0
returns orientation object
Class for storing an "orientation", or a direction in 2D or 3D space.
Definition: orientation.h:94
unsigned int TType
class type indicator
Definition: basedef.h:41
Itasca Library standard namespace, specific to 2D or 3D.
Definition: icontactmodule.h:4
virtual void setOrientation(const Orientation3 &o)=0
sets orientation filter element
static const TType type_
type code
Definition: irangeelementorientation.h:9