aboutsummaryrefslogtreecommitdiff
path: root/src/old/tests/param.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/old/tests/param.h')
-rw-r--r--src/old/tests/param.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/old/tests/param.h b/src/old/tests/param.h
deleted file mode 100644
index 2756b69..0000000
--- a/src/old/tests/param.h
+++ /dev/null
@@ -1,21 +0,0 @@
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