X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/ae21e8d6ad32d0bf3517127aef5cd8129b7507aa..0907aa4037b12b6b88ee24495d4577a064d4f8db:/projects/sgconf/parser_state.h diff --git a/projects/sgconf/parser_state.h b/projects/sgconf/parser_state.h index 1482133e..22ad794f 100644 --- a/projects/sgconf/parser_state.h +++ b/projects/sgconf/parser_state.h @@ -21,17 +21,17 @@ #ifndef __STG_SGCONF_PARSER_STATE_H__ #define __STG_SGCONF_PARSER_STATE_H__ -#include "config.h" - namespace SGCONF { struct PARSER_STATE { - CONFIG config; - bool result; + PARSER_STATE(bool s, int c, char ** v) : stop(s), argc(c), argv(v) {} + bool stop; int argc; char ** argv; }; } + +#endif