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