クラス toppers::itron::cfg_groupコンテンツ内のグループ管理クラス
[詳細]
#include "toppers/itron/cfg_group.hpp"
toppers::itron::cfg_groupのコラボレーション図
[凡例]すべてのメンバ一覧
説明
コンテンツ内のグループ管理クラス
cfg_group.hpp の 65 行で定義されています。
コンストラクタとデストラクタ
toppers::itron::cfg_group::cfg_group |
( |
const std::string & |
name, |
|
|
const std::string & |
group_type |
|
) |
[inline] |
|
toppers::itron::cfg_group::cfg_group |
( |
const std::string & |
name |
) |
[inline, explicit] |
|
関数
const std::string& toppers::itron::cfg_group::group_type |
( |
|
) |
const [inline] |
|
|
グループ種別の取得
- 戻り値:
- グループ種別を表す文字列への参照を返す
cfg_group.hpp の 115 行で定義されています。 00115 { return group_type_; }
|
const std::string& toppers::itron::cfg_group::name |
( |
|
) |
const [inline] |
|
void toppers::itron::cfg_group::objects |
( |
const object_container & |
container |
) |
[inline] |
|
|
カーネルオブジェクト列の設定
- 引数:
-
| container | 設定するカーネルオブジェクト列 |
cfg_group.hpp の 105 行で定義されています。 00105 { objects_ = container; }
|
|
カーネルオブジェクト列の取得
- 戻り値:
- カーネルオブジェクト列への参照を返す
cfg_group.hpp の 100 行で定義されています。 00100 { return objects_; }
|
|
カーネルオブジェクト列の取得
- 戻り値:
- カーネルオブジェクト列への参照を返す
cfg_group.hpp の 95 行で定義されています。 00095 { return objects_; }
|
bool toppers::itron::cfg_group::parse |
( |
text::const_iterator & |
next, |
|
|
text::const_iterator |
last, |
|
|
bool |
ucn = false , |
|
|
codeset_t |
codeset = ascii |
|
) |
|
|
|
ソーステキストの構文解析
- 引数:
-
| next | 解析対象の先頭位置 |
| last | 解析対象の終端位置+1 |
| ucn | 国際文字名を有効にするには true を指定する |
| codeset | 文字コード |
- 戻り値:
- 構文解析に成功すれば true を返す
cfg_group.cpp の 69 行で定義されています。
参照先 do_parse(). 00070 {
00071 return do_parse( next, last, ucn, codeset );
00072 }
関数の呼び出しグラフ:
|
void toppers::itron::cfg_group::swap |
( |
cfg_group & |
other |
) |
throw () |
|
|
グループの交換
- 引数:
-
cfg_group.cpp の 54 行で定義されています。 00055 {
00056 objects_.swap( other.objects_ );
00057 name_.swap( other.name_ );
00058 group_type_.swap( other.group_type_ );
00059 }
|
このクラスの説明は次のファイルから生成されました:
Copyright © 2006 by TAKAGI Nobuhisa.
このページは Wed Apr 12 16:32:05 2006 に Doxygen によって生成されました。
|
|