トップページ
ひらく | たたむ | ページトップ
↓マウスで反転選択した文字を検索
C++
   
ページ内検索 ページ外検索
検索したい文字を入力して
ENTERを押すと移動します。
\n
[ トップページ ]
[ ____CommandPrompt ] [ ____JScript ] [ ____MySQL ] [ ____Cygwin ] [ ____Java ] [ ____Emacs ] [ ____Make ] [ ____Perl ] [ ____Python ] [ ____OpenGL ] [ ____C# ] [ ____StyleSheet ] [ ____C++ ] [ ____Winsock ] [ ____Thread ] [ ____VisualStudio ] [ ____C ] [ ____Win32API ] [ ____Lua ] [ ____PhotoShop ]
ヘッダ検索

___

■ TinyXml



  
    #include "tinyxml.h"
    #pragma comment(lib, "./debug/tinyxmld.lib")

    {
      TiXmlDocument doc;

      TiXmlDeclaration * decl = new TiXmlDeclaration( "1.0", "", "" );
      TiXmlElement *element = new TiXmlElement( "Hello" );

      // エレメントを作成してアトリビュートを設定
      TiXmlElement *e = new TiXmlElement( "node" );
      e->SetAttribute("name", "test");

      TiXmlText * text = new TiXmlText( "World" );

      // 各ノードを親子づけする
      element->LinkEndChild( text );
      element->LinkEndChild( e );
      doc.LinkEndChild( decl );
      doc.LinkEndChild( element );

      // 保存する。
      doc.SaveFile( "test_write.xml" );  
    }
XML は次の仕様をみたす必要がある root ノードはひとつ。
    < root>
      // 同一の attribute はダメ
      < node name="xxx" name="yyy">

    < /root>

    // これはダメ
    < root/>


NINJAIDX 12