タグ

boostに関するheiwabokeのブックマーク (2)

  • Boost.PropertyTree XMLの読み込みフラグ - Faith and Brave - C++で遊ぼう

    reference - boost::property::xml_parser::read_xml // In header: <boost/property_tree/xml_parser.hpp> template<typename Ptree> void read_xml(const std::string & filename, Ptree & pt, int flags = 0, const std::locale & loc = std::locale()); Parameters: ... flags Flags controlling the bahviour of the parser. The following flags are supported: ・no_concat_text -- Prevents concatenation of text nodes in

    Boost.PropertyTree XMLの読み込みフラグ - Faith and Brave - C++で遊ぼう
  • Boost.Interprocess

    Boost.Interprocess Boost.Interprocessは,次のような用途に使います. 共有メモリ メモリマップファイル セマフォ,ミューテックス,条件変数,共有メモリやメモリマップファイル上のアップグレード可能なミューテックス型 名前付したこれらの同期オブジェクト型.UnixやWindowsのsem_openやCreateSemaphore APIに似たもの. ファイルロック 相対的な位置 メッセージキュー Boost.Interprocessは,さらに高レベルな仕組みを提供しています.この仕組を用いれば,STLのコンテナのようなものを簡単にメモリ上につくることができます. 共有メモリやメモリマップファイル上の匿名,もしくは名前付られたオブジェクトの動的な作成 STLのようなコンテナで共有メモリやメモリマップファイルに互換性のあるもの STLのようなアロケーターで,様々

  • 1