CARMA C++
CallerFilter.h
Go to the documentation of this file.
1 #ifndef CARMA_DBMS_CALLERFILTER_H
2 #define CARMA_DBMS_CALLERFILTER_H
3 
15 #include <string>
16 #include <sstream>
18 
19 namespace carma {
20 namespace dbms {
21 
29 class CallerFilter : public StringFilter {
30 
31 public:
32 
38  CallerFilter(const std::string& value, const SearchType& searchType);
39 
43  virtual ~CallerFilter();
44 
49  virtual std::string name() const;
50 };
51 
52 
53 }}
54 
55 #endif // CARMA_DBMS_STRINGFILTER_H
56 
template to represent a one component caller filter.
Definition: CallerFilter.h:29
virtual std::string name() const
get the class name for log messages etc.
CallerFilter(const std::string &value, const SearchType &searchType)
constuctor
String filter class.
template to represent a one component string filter.
Definition: StringFilter.h:30
virtual ~CallerFilter()
destructor, derived classes may want to override
SearchType
type of search to perform
Definition: StringFilter.h:41