diff options
| author | Mike Buland <eichlan@xagasoft.com> | 2006-06-29 02:50:56 +0000 |
|---|---|---|
| committer | Mike Buland <eichlan@xagasoft.com> | 2006-06-29 02:50:56 +0000 |
| commit | 5e386890b41fe043e2639b25b613831ef8362e7b (patch) | |
| tree | 60da93a6ade1db5ed2620fbe47b472291459a1a1 /src/test/param.h | |
| parent | ac98da8eacbf1147d69e378db62432db05e8c73e (diff) | |
| download | libbu++-5e386890b41fe043e2639b25b613831ef8362e7b.tar.gz libbu++-5e386890b41fe043e2639b25b613831ef8362e7b.tar.bz2 libbu++-5e386890b41fe043e2639b25b613831ef8362e7b.tar.xz libbu++-5e386890b41fe043e2639b25b613831ef8362e7b.zip | |
Completely removed the old, crappy pproc and replaced it with the new, shiny
ParamProc class...it's soooo much better it makes me wanna' throw things...
Diffstat (limited to '')
| -rw-r--r-- | src/test/param.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/test/param.h b/src/test/param.h new file mode 100644 index 0000000..2756b69 --- /dev/null +++ b/src/test/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 | ||
