Ejemplo n.º 1
0
void file_generator::
populate(const unsigned int position, result_type& v) {
    v.path(create_boost_filesystem_path(position + 0));
    v.content(create_std_string(position + 1));
    v.overwrite(create_bool(position + 2));
}
Ejemplo n.º 2
0
void boolean_generator::
populate(const unsigned int position, result_type& v) {
    dogen::annotations::value_generator::populate(position, v);
    v.content(create_bool(position + 0));
}
Ejemplo n.º 3
0
void key_value_pair_generator::
populate(const unsigned int position, result_type& v) {
    dogen::annotations::value_generator::populate(position, v);
    v.content(create_std_unordered_map_std_string_std_string(position + 0));
}