8 #ifndef KERNEL_SELECTSTATEMENT_H 9 #define KERNEL_SELECTSTATEMENT_H 56 long type()
const override {
return m_type; }
63 ( m_select.length() > 0 ) ? m_type |= STRING : m_type &= ~STRING;
66 void setActive(
bool flag =
true )
override { m_isActive = flag; }
68 bool isActive()
const override {
return m_isActive; }
70 virtual bool operator()(
void* )
override {
return true; }
80 #endif // KERNEL_SELECTSTATEMENT_H SelectStatement()
Standard Constructor initializing function call.
Base class used to implement the interfaces.
virtual ~SelectStatement()
Standard Destructor.
SelectStatement(const std::string &s, long typ)
Standard Constructor initializing select string.
bool isActive() const override
Check if selection is active.
void setActive(bool flag=true) override
Change activity flag.
bool m_isActive
Activation flag.
long type() const override
Access the type of the object.
virtual bool operator()(void *) override
Stupid default implementation.
void setCriteria(const std::string &crit) override
Set the type.
long m_type
Type identifier.
Class of a selection statement.
const std::string & criteria() const override
Access the selection string.
std::string m_select
Select string.
SelectStatement(const std::string &s)
Standard Constructor initializing select string.