예제 #1
0
파일: file_td.cpp 프로젝트: pgannon/dogen
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));
}
예제 #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));
}
예제 #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));
}