00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025 #ifndef _dgOptionFilter_h_
00026 #define _dgOptionFilter_h_
00027
00033 #include <vector>
00034
00035 namespace DGD {
00036
00055 class option_filter {
00056 public:
00057 class option_set_type {
00058 public:
00059
00060 int argc;
00061 char** argv;
00062
00063 option_set_type() : argc(0), argv(NULL) {}
00064 option_set_type( int _argc, char** _argv ) {
00065 allocate( _argc );
00066 argc = _argc;
00067 std::copy( _argv, _argv+_argc, argv );
00068 }
00069
00070 void allocate( int n ) {
00071 argc = n;
00072 argv = new char*[ argc + 1 ];
00073 std::fill( argv, argv + argc + 1, (char*)NULL );
00074 }
00075
00076 ~option_set_type() {
00077 if( argv ) delete [] argv;
00078 }
00079 };
00080
00081 typedef std::vector<option_set_type> option_set_container;
00082
00083 option_set_container* operator () ( int argc, char** argv,
00084 int filtc, char** filtv );
00085 };
00086
00087 };
00088
00089 #endif
00090
00091
00092
00093
00094
00095
00096
00097