param_test.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2010, Willow Garage, Inc.
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions are met:
7  *
8  * * Redistributions of source code must retain the above copyright
9  * notice, this list of conditions and the following disclaimer.
10  * * Redistributions in binary form must reproduce the above copyright
11  * notice, this list of conditions and the following disclaimer in the
12  * documentation and/or other materials provided with the distribution.
13  * * Neither the name of the Willow Garage, Inc. nor the names of its
14  * contributors may be used to endorse or promote products derived from
15  * this software without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
18  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
21  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
22  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
25  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27  * POSSIBILITY OF SUCH DAMAGE.
28  */
29 
30 #ifndef FILTERS_PARAM_TEST
31 #define FILTERS_PARAM_TEST
32 
33 #include <stdint.h>
34 #include <cstring>
35 #include <stdio.h>
36 
37 #include <boost/scoped_ptr.hpp>
38 
39 #include "filters/filter_base.h"
40 #include "ros/assert.h"
41 
42 
43 namespace filters
44 {
45 
49 template <typename T>
50 class ParamTest: public FilterBase <T>
51 {
52 public:
54  ParamTest();
55 
58  ~ParamTest();
59 
60  virtual bool configure();
61 
66  virtual bool update( const T & data_in, T& data_out);
67 
68 protected:
69 
70 };
71 
72 
73 template <typename T>
75 {
76 }
77 
78 template <typename T>
80 {
81  return true;
82 }
83 
84 template <typename T>
86 {
87 }
88 
89 
90 template <typename T>
91 bool ParamTest<T>::update(const T & data_in, T& data_out)
92 {
93  T temp;
94  this->getParam("key", temp);
95  data_out = temp;
96  return true;
97 };
98 
99 }
100 #endif
~ParamTest()
Destructor to clean up.
Definition: param_test.h:85
ParamTest()
Construct the filter with the expected width and height.
Definition: param_test.h:74
A Base filter class to provide a standard interface for all filters.
Definition: filter_base.h:50
bool getParam(const std::string &name, std::string &value)
Get a filter parameter as a string.
Definition: filter_base.h:121
A mean filter which works on doubles.
Definition: param_test.h:50
virtual bool configure()
Pure virtual function for the sub class to configure the filter This function must be implemented in ...
Definition: param_test.h:79
virtual bool update(const T &data_in, T &data_out)
Update the filter and return the data seperately.
Definition: param_test.h:91


filters
Author(s):
autogenerated on Mon Jun 10 2019 13:15:08