作爲第二個參數v_get_xpath_base爲了讓它起作用,無論我嘗試什麼,總會出現問題。這個類是基類,不能被實例化或者類不能被轉換。TinyXpath v_get_xpath_base,第二個參數
我不知所措,有人幫我嗎?
TiXmlElement* outputnode = new TiXmlElement("test");
bool isAttrib;
proc.v_get_xpath_base(1, outputnode, isAttrib);
當前標準的,該TiXmlElement
不能轉換到const TiXmlBase*&
我的編譯器說::不能將參數2從'const TiXmlElement *'轉換爲'const TiXmlBase *'' – 2010-10-21 14:14:00
您是否嘗試過'const TiXmlBase * outputnode(0);'?我沒有圖書館,所以不能試試這個。 – 2010-10-21 14:15:01
@Tony - 參見編輯,我找到了一個使用'TiXmlBase'的示例,並將結果轉換爲需要的結果。據此編輯回覆。 – 2010-10-21 14:19:15