Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
アプリケーションにTinyXmlライブラリを使用していますが、TiXmlDocumentオブジェクトはXmlファイルしかロードできません。文字列からXmlをロードするにはどうすればよいですか。これを行う方法を教えてください。どうもありがとうございます
火
TiXmlDocument :: LoadFile()を呼び出す代わりに、TiXmlDocument :: Parse()を使用できます。
TiXmlDocument doc; doc.Parse((const char*)filedata, 0, TIXML_ENCODING_UTF8);
ユーザーデータクラスでDotSceneローダーを確認する