Itasca C++ Interface
Loading...
Searching...
No Matches
irangeelementname.h
1#pragma once
2
4
5namespace itascaxd {
8 class IRangeElementName { // name = "name"
9 public:
11 inline static const TType type_ = 0x553e95e1;
12
13 shared::Signal<const QString &> nameAdded;
14 shared::Signal<const QString &> nameRemoved;
15
18
20 virtual QSet<QString> getNames(bool checked=true) const=0;
22 virtual void setNames(const QSet<QString> &ns)=0;
24 virtual void addName(const QString &n)=0;
26 virtual void removeName(const QString &n)=0;
27 };
28
29} // namespace itascaxd
30// EoF
Interface to a filter element, which is a member of a IRange..
Definition irangeelement.h:19
Interface to a RangeElement exposing the IThing getName method.
Definition irangeelementname.h:8
virtual void setNames(const QSet< QString > &ns)=0
Sets the name list.
virtual void addName(const QString &n)=0
Adds the set name.
virtual QSet< QString > getNames(bool checked=true) const =0
Returns the list of name that are checked against the getName method.
virtual void removeName(const QString &n)=0
Removes the set name.
virtual IRangeElement * getIRangeElement()=0
Returns a pointer to itself.
static const TType type_
The type identification number for this class, for use in convert_cast() and convert_getcast().
Definition irangeelementname.h:11
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