Subversion Repositories gelsvn

Rev

Rev 380 | Rev 448 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 380 Rev 382
Line 59... Line 59...
59
    void close() { infile.close(); }
59
    void close() { infile.close(); }
60
 
60
 
61
    XmlHead head;
61
    XmlHead head;
62
 
62
 
63
  private:
63
  private:
64
    friend XmlElement;
64
    friend struct XmlElement;
65
    friend XmlBody;
65
    friend struct XmlBody;
66
 
66
 
67
    std::ifstream infile;
67
    std::ifstream infile;
68
    XmlBody body;
68
    XmlBody body;
69
    std::map<std::string, XmlElementHandler> handlers;
69
    std::map<std::string, XmlElementHandler> handlers;
70
  };
70
  };