aboutsummaryrefslogtreecommitdiff
path: root/src/tests/param.h
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2006-10-11 15:54:09 +0000
committerMike Buland <eichlan@xagasoft.com>2006-10-11 15:54:09 +0000
commita77e41eee42b99282c05d268479ba5ebb11dc095 (patch)
treed211c2e3978ba6ed6c91b8b430a85d59d50079f9 /src/tests/param.h
parent745875139b5ee46e469927d410364bfeeedb2995 (diff)
downloadlibbu++-a77e41eee42b99282c05d268479ba5ebb11dc095.tar.gz
libbu++-a77e41eee42b99282c05d268479ba5ebb11dc095.tar.bz2
libbu++-a77e41eee42b99282c05d268479ba5ebb11dc095.tar.xz
libbu++-a77e41eee42b99282c05d268479ba5ebb11dc095.zip
Rearranged the tests, now it's like the old style, which I like more for some
reason.
Diffstat (limited to 'src/tests/param.h')
-rw-r--r--src/tests/param.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/tests/param.h b/src/tests/param.h
new file mode 100644
index 0000000..2756b69
--- /dev/null
+++ b/src/tests/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