00001 00002 00003 00004 00005 00006 00007 #ifndef XMLI_BUILDER_H 00008 #define XMLI_BUILDER_H 00009 #include <string> 00010 #include "XMLInterface/Attribute.h" 00011 00012 namespace xmli { 00014 class Builder { 00015 public: 00041 virtual void Build(const xmli::AttributeList& attr, 00042 const std::string& buffer) = 0; 00043 public: 00044 Builder(const char* tag); 00045 virtual ~Builder(); 00046 }; 00047 } 00048 #endif 00049
1.3.9.1