void SectionWrapper::load_file(const str_type & filename)
{
    this->free();
    Section section;
    section.load_file(filename);
    this->_p_section = new Section(section);
}
예제 #2
0
void Section::merge_file(const str_type & filename)
{
    Section s;
    s.load_file(filename);
    this->merge(s);
}