CARMA C++
PriorityFilter.h
Go to the documentation of this file.
1 #ifndef CARMA_DBMS_PRIORITYFILTER_H
2 #define CARMA_DBMS_PRIORITYFILTER_H
3 
15 #include <string>
18 
19 namespace carma {
20 namespace dbms {
21 
26 class PriorityFilter : public NumericFilter<dbPriorityType> {
27 
28 public:
29 
30  PriorityFilter(const dbPriorityType& value,
32 
37  virtual std::string name() const;
38 
39 };
40 }}
41 
42 #endif // CARMA_DBMS_PRIORITYFILTER_H
43 
SearchType
type of test to perform
Definition: NumericFilter.h:46
unsigned short dbPriorityType
Database priority level.
Definition: Typedefs.h:30
virtual std::string name() const
get the class name for log messages etc.
class to represent an SQL query log priority filter (part of a WHERE clause) .
template to represent a one component numeric search filter.
Definition: NumericFilter.h:34
Numeric filter template class.