Arduino Libraries
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros
tags.hpp
Go to the documentation of this file.
1 // Author: Mario S. Könz <mskoenz@gmx.net>
2 // Date: 23.07.2013 05:10:03 EDT
3 // File: tags.hpp
4 
5 /* This program is free software. It comes without any warranty, to
6  * the extent permitted by applicable law. You can redistribute it
7  * and/or modify it under the terms of the Do What The Fuck You Want
8  * To Public License, Version 2, as published by Sam Hocevar. See
9  * http://www.wtfpl.net/ or COPYING for more details. */
10 
11 #ifndef __FILTER_TAGS_HEADER
12 #define __FILTER_HEADER
13 
14 namespace ustd {
15  namespace tag {
16  struct identity {};
17  template<unsigned N>
18  struct lowpass {};
19  template<unsigned PROMIL>
20  struct highpass {};
21  template<unsigned W>
22  struct hysteresis {};
23 
24  }//end namespace tag
25 }//end namespace ustd
26 #endif //__FILTER_HEADER
Definition: tags.hpp:18
Definition: tags.hpp:22
Definition: tags.hpp:20
Definition: tags.hpp:16