当前位置: 首页>>代码示例>>C++>>正文


C++ AttributeMap::addAttribute方法代码示例

本文整理汇总了C++中AttributeMap::addAttribute方法的典型用法代码示例。如果您正苦于以下问题:C++ AttributeMap::addAttribute方法的具体用法?C++ AttributeMap::addAttribute怎么用?C++ AttributeMap::addAttribute使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在AttributeMap的用法示例。


在下文中一共展示了AttributeMap::addAttribute方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。

示例1: testGetAttribute_Namespaced

        void testGetAttribute_Namespaced() {
            AttributeMap testling;
            testling.addAttribute("lang", "", "nl");
            testling.addAttribute("lang", "http://www.w3.org/XML/1998/namespace", "en");
            testling.addAttribute("lang", "", "fr");

            CPPUNIT_ASSERT_EQUAL(std::string("en"), testling.getAttribute("lang", "http://www.w3.org/XML/1998/namespace"));
        }
开发者ID:jakjothi,项目名称:swift,代码行数:8,代码来源:AttributeMapTest.cpp

示例2: handleStartElement

static void handleStartElement(void* parser, const xmlChar* name, const xmlChar*, const xmlChar* xmlns, int, const xmlChar**, int nbAttributes, int nbDefaulted, const xmlChar ** attributes) {
	AttributeMap attributeValues;
	if (nbDefaulted != 0) {
		// Just because i don't understand what this means yet :-)
		std::cerr << "Unexpected nbDefaulted on XML element" << std::endl;
	}
	for (int i = 0; i < nbAttributes*5; i += 5) {
		std::string attributeNS = "";
		if (attributes[i+2]) {
			attributeNS = std::string(reinterpret_cast<const char*>(attributes[i+2]));
		}
		attributeValues.addAttribute(std::string(reinterpret_cast<const char*>(attributes[i])), attributeNS, std::string(reinterpret_cast<const char*>(attributes[i+3]), attributes[i+4]-attributes[i+3]));
	}
	static_cast<XMLParser*>(parser)->getClient()->handleStartElement(reinterpret_cast<const char*>(name), (xmlns ? reinterpret_cast<const char*>(xmlns) : std::string()), attributeValues);
}
开发者ID:smuralireddy,项目名称:swift,代码行数:15,代码来源:LibXMLParser.cpp

示例3: testGetBoolAttribute_Invalid

        void testGetBoolAttribute_Invalid() {
            AttributeMap testling;
            testling.addAttribute("foo", "", "bla");

            CPPUNIT_ASSERT(!testling.getBoolAttribute("foo", true));
        }
开发者ID:jakjothi,项目名称:swift,代码行数:6,代码来源:AttributeMapTest.cpp

示例4: testGetBoolAttribute_False

        void testGetBoolAttribute_False() {
            AttributeMap testling;
            testling.addAttribute("foo", "", "false");

            CPPUNIT_ASSERT(!testling.getBoolAttribute("foo", true));
        }
开发者ID:jakjothi,项目名称:swift,代码行数:6,代码来源:AttributeMapTest.cpp

示例5:

        void testGetBoolAttribute_1() {
            AttributeMap testling;
            testling.addAttribute("foo", "", "1");

            CPPUNIT_ASSERT(testling.getBoolAttribute("foo"));
        }
开发者ID:jakjothi,项目名称:swift,代码行数:6,代码来源:AttributeMapTest.cpp


注:本文中的AttributeMap::addAttribute方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。