X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=utilities%2Fgengetopt%2Fskels%2Fdependant_option.h;fp=utilities%2Fgengetopt%2Fskels%2Fdependant_option.h;h=4a106563196436b9fd35d43c8b591e0b920ac424;hb=79381bc54b9e0c85156460daa211fe5ac83da0a7;hp=0000000000000000000000000000000000000000;hpb=4454c06e212fb6af58d206f2d6f9b76778858967;p=clitk.git diff --git a/utilities/gengetopt/skels/dependant_option.h b/utilities/gengetopt/skels/dependant_option.h new file mode 100644 index 0000000..4a10656 --- /dev/null +++ b/utilities/gengetopt/skels/dependant_option.h @@ -0,0 +1,87 @@ +/* + * File automatically generated by + * gengen 1.2 by Lorenzo Bettini + * http://www.gnu.org/software/gengen + */ + +#ifndef DEPENDANT_OPTION_GEN_CLASS_H +#define DEPENDANT_OPTION_GEN_CLASS_H + +#include +#include + +using std::string; +using std::ostream; + +class dependant_option_gen_class +{ + protected: + string dep_option; + string dep_option_descr; + string option_descr; + string option_var_name; + string package_var_name; + + public: + dependant_option_gen_class() + { + } + + dependant_option_gen_class(const string &_dep_option, const string &_dep_option_descr, const string &_option_descr, const string &_option_var_name, const string &_package_var_name) : + dep_option (_dep_option), dep_option_descr (_dep_option_descr), option_descr (_option_descr), option_var_name (_option_var_name), package_var_name (_package_var_name) + { + } + + static void + generate_string(const string &s, ostream &stream, unsigned int indent) + { + if (!indent || s.find('\n') == string::npos) + { + stream << s; + return; + } + + string::size_type pos; + string::size_type start = 0; + string ind (indent, ' '); + while ( (pos=s.find('\n', start)) != string::npos) + { + stream << s.substr (start, (pos+1)-start); + start = pos+1; + if (start+1 <= s.size ()) + stream << ind; + } + if (start+1 <= s.size ()) + stream << s.substr (start); + } + + void set_dep_option(const string &_dep_option) + { + dep_option = _dep_option; + } + + void set_dep_option_descr(const string &_dep_option_descr) + { + dep_option_descr = _dep_option_descr; + } + + void set_option_descr(const string &_option_descr) + { + option_descr = _option_descr; + } + + void set_option_var_name(const string &_option_var_name) + { + option_var_name = _option_var_name; + } + + void set_package_var_name(const string &_package_var_name) + { + package_var_name = _package_var_name; + } + + void generate_dependant_option(ostream &stream, unsigned int indent = 0); + +}; + +#endif // DEPENDANT_OPTION_GEN_CLASS_H