Itasca C++ Interface
irangeelementgeometrydistance.h
1 #pragma once
2 
4 
5 namespace itascaxd {
9  class IRangeElementGeometryDistance { // name = "geometry"
10  public:
12  inline static const TType type_ = 0x4f201f49;
13 
14  shared::Signal<const QSet<QString> &> namesChanged;
15  shared::Signal<const QString &> nameAdded;
16  shared::Signal<const QString &> nameRemoved;
17  shared::Signal<double> distanceChanged;
18 
21 
23  virtual QSet<QString> getNames() const=0;
25  virtual double getDistance() const=0;
27  virtual void setNames(const QSet<QString> &ns)=0;
29  virtual void addName(const QString &n)=0;
31  virtual void removeName(const QString &n)=0;
33  virtual void setDistance(const double &distance)=0;
34  };
35 
36 } // namespace itascaxd
37 // EoF
Interface to a RangeElement of a geometry set, where you want objects within a certain distance to th...
Definition: irangeelementgeometrydistance.h:9
virtual double getDistance() const =0
Returns the distance to the geometry set.
virtual QSet< QString > getNames() const =0
Returns the list of geometry sets associated with this filter element.
virtual void removeName(const QString &n)=0
Removes the geometry set list to the filter.
virtual IRangeElement * getIRangeElement()=0
Returns a pointer to itself.
virtual void setNames(const QSet< QString > &ns)=0
Sets the geometry set list to the filter.
virtual void addName(const QString &n)=0
Adds the geometry set list to the filter.
static const TType type_
The type identification number for this class, for use in convert_cast() and convert_getcast().
Definition: irangeelementgeometrydistance.h:12
virtual void setDistance(const double &distance)=0
Sets the distance to the geometry sets.
Interface to a filter element, which is a member of a IRange..
Definition: irangeelement.h:19
uint32 TType
class type indicator
Definition: basedef.h:46
Interface to a filter element, which is a member of a IRange.
Itasca Library standard namespace, specific to 2D or 3D.
Definition: icontactmodule.h:4