00001 00002 00003 00004 00005 00006 00007 00008 #ifndef XMLI_UINTBUILDER_H 00009 #define XMLI_UINTBUILDER_H 00010 #include "XMLInterface/Builder.h" 00011 00012 namespace xmli { 00013 class uintBuilder : public Builder { 00014 public: 00015 uintBuilder(const char* tag); 00016 void Build(const AttributeList& attr, const std::string& buffer); 00017 private: 00018 }; 00019 } 00020 #endif // XMLI_UINTBUILDER_H 00021
1.3.9.1