TiXmlElement *pElem;
std::string StatusResponse;
pElem = hResponse.FirstChild("StatusResponse").Element();
if (pElem)
StatusResponse = pElem->GetText();
pElem
が有効であるが、要素にテキストが含まれていない場合はpElem->GetText()
、NULL ポインターを返し、例外が発生します。これをどのように処理すればよいですか?
ありがとう。