diff options
Diffstat (limited to 'src/test/param/param.h')
| -rw-r--r-- | src/test/param/param.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/test/param/param.h b/src/test/param/param.h new file mode 100644 index 0000000..2756b69 --- /dev/null +++ b/src/test/param/param.h | |||
| @@ -0,0 +1,21 @@ | |||
| 1 | #ifndef PARAM_H | ||
| 2 | #define PARAM_H | ||
| 3 | |||
| 4 | #include <stdint.h> | ||
| 5 | |||
| 6 | #include "paramproc.h" | ||
| 7 | |||
| 8 | class Param : public ParamProc | ||
| 9 | { | ||
| 10 | public: | ||
| 11 | Param(); | ||
| 12 | virtual ~Param(); | ||
| 13 | |||
| 14 | private: | ||
| 15 | int printStuff( int argc, char *argv[] ); | ||
| 16 | |||
| 17 | std::string str; | ||
| 18 | uint32_t uint32; | ||
| 19 | }; | ||
| 20 | |||
| 21 | #endif | ||
