aboutsummaryrefslogtreecommitdiff
path: root/src/test/param/param.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/param/param.h')
-rw-r--r--src/test/param/param.h21
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
8class Param : public ParamProc
9{
10public:
11 Param();
12 virtual ~Param();
13
14private:
15 int printStuff( int argc, char *argv[] );
16
17 std::string str;
18 uint32_t uint32;
19};
20
21#endif