TS++ library: time series library
anyfilter.h
Go to the documentation of this file.
1 
35 // include guard
36 #ifndef TF_ANYFILTER_H_VERSION
37 
38 #define TF_ANYFILTER_H_VERSION \
39  "TF_ANYFILTER_H V1.0 "
40 
41 #include<string>
42 #include<tsxx/filterbase.h>
43 
44 namespace ts {
45 
46  namespace filter {
47 
49  Tfilterhandle make_any_filter(const std::string& s,
50  const bool& debug=false);
51 
53  void print_any_help(std::ostream& os);
54 
55  } // namespace filter
56 
57 } // namespace ts
58 
59 #endif // TF_ANYFILTER_H_VERSION (includeguard)
60 
61 /* ----- END OF anyfilter.h ----- */
tfxx::Handle< BasicFilter > Tfilterhandle
handle to pass filters
Definition: filterbase.h:93
Tfilterhandle make_any_filter(const std::string &s, const bool &debug)
combine all filters (seife and others)
Definition: anyfilter.cc:47
base class for all filter classes (prototypes)
All stuff in this library will be placed within namespace ts.
Definition: anyfilter.cc:43
void print_any_help(std::ostream &os)
print information on available filters
Definition: anyfilter.cc:104