趣味で作ってるロボット用ソフトウェア
 All Classes Files Functions Enumerations Enumerator Friends Pages
Static_filter.h
Go to the documentation of this file.
1 #ifndef HRK_STATIC_FILTER_H
2 #define HRK_STATIC_FILTER_H
3 
9 #include <cstddef>
10 #include <memory>
11 #include <vector>
12 
13 
14 namespace hrk
15 {
17  {
18  public:
19  Static_filter(size_t step_size, long accepted_error_mm);
20  ~Static_filter();
21 
22  void update_data(std::vector<long>& data);
23 
24  private:
25  Static_filter(const Static_filter& rhs);
26  Static_filter& operator = (const Static_filter& rhs);
27 
28  struct pImpl;
29  std::auto_ptr<pImpl> pimpl;
30  };
31 }
32 
33 #endif
Definition: Static_filter.h:16