CARMA C++
MonitorPointNumericValueFilter.h
Go to the documentation of this file.
1 #ifndef CARMA_DBMS_MONITORPOINTNUMERICVALUEFILTER_H
2 #define CARMA_DBMS_MONITORPOINTNUMERICVALUEFILTER_H
3 
16 
17 namespace carma {
18 namespace dbms {
19 
24 template <class T> class MonitorPointNumericValueFilter
25  : public carma::dbms::NumericFilter<T> {
26 public:
27 
34  (const T& value,
35  const typename carma::dbms::NumericFilter<T>::SearchType& searchType)
36  : NumericFilter<T>(value, searchType) {}
37 
42 };
43 
44 
45 }}
46 
47 #endif // CARMA_DBMS_MONITORPOINTNUMERICVALUEFILTER_H
48 
SearchType
type of test to perform
Definition: NumericFilter.h:46
MonitorPointNumericValueFilter(const T &value, const typename carma::dbms::NumericFilter< T >::SearchType &searchType)
constuctor
template to represent a one component filter for numeric searches on value columns in monitor point d...
virtual ~MonitorPointNumericValueFilter()
destructor, derived classes may want to override
template to represent a one component numeric search filter.
Definition: NumericFilter.h:34
Numeric filter template class.