TNB Library
|
情報アクセス抽象クラス. [詳解]
#include <TnbAccessor.h>
公開型 | |
typedef CMapT< CStr, CValue, LPCTSTR > | CKeyMap |
キーと値のマップ型宣言 [詳解] | |
typedef CTreeT< CStr, CValue, LPCTSTR > | CKeyTree |
キーと値のツリー型宣言 [詳解] | |
enum | EKind { EK_Nothing = 'n' , EK_String = 's' , EK_PluralStrings = 'p' , EK_Binary = 'b' , EK_Dword = 'd' , EK_Longlong = 'i' } |
値型の種類. [詳解] | |
公開メンバ関数 | |
bool | DeleteAllSection (void) |
[削除] 全セクション削除 [詳解] | |
virtual bool | DeleteSection (LPCTSTR lpszSectionName)=0 |
[削除] 指定セクション削除 [詳解] | |
virtual CStrVector | EnumKeyNames (LPCTSTR lpszSectionName) const =0 |
[取得] キー名一覧取得 [詳解] | |
virtual CStrVector | EnumSectionNames (LPCTSTR lpszSectionName=NULL) const =0 |
[取得] セクション名一覧取得 [詳解] | |
virtual bool | Flush (void) |
[操作] フラッシュ. [詳解] | |
virtual EKind | GetKeyKind (LPCTSTR lpszSectionName, LPCTSTR lpszKey) const =0 |
[取得] 情報取種取得 [詳解] | |
void | GetKeyTree (CKeyTree &_tree) const |
[取得] 全値取得 [詳解] | |
void | GetKeyTree (CStrsTree &_tree) const |
[取得] 全値取得 [詳解] | |
virtual CStr | GetTypeName (void) const =0 |
[取得] タイプ名取得 [詳解] | |
CSection | operator[] (LPCTSTR lpszSectionName) |
[取得] CSection取得 [詳解] | |
const CSection | operator[] (LPCTSTR lpszSectionName) const |
[取得] CSection取得 [詳解] | |
virtual CValue | QueryValue (LPCTSTR lpszSectionName, LPCTSTR lpszKey) const =0 |
[取得] 情報取得 [詳解] | |
virtual bool | WriteValue (LPCTSTR lpszSectionName, LPCTSTR lpszKey, const IAccessor::CValue &value)=0 |
[設定] 情報設定 [詳解] | |
静的公開メンバ関数 | |
static CStr | MakeDefineFilePath (void) |
[作成] 定義ファイル名作成. [詳解] | |
template<typename TYP > | |
static CVectorT< IAccessor::CValue > | ToValueVector (const CVectorT< TYP > &vt) |
[変換] 配列変換. [詳解] | |
情報アクセス抽象クラス.
セクションで区切られた中に複数のキーと値を持つ形の情報を管理する抽象クラスです。
TnbAccessor.h の 966 行目に定義があります。
キーと値のツリー型宣言
TnbAccessor.h の 269 行目に定義があります。
|
inherited |
値型の種類.
IAccessor と IAccessor::CValue で使う型の種類です。
列挙値 | |
---|---|
EK_Nothing | 存在しない |
EK_String | 文字列 |
EK_PluralStrings | 複数の文字列群 |
EK_Binary | バイナリ |
EK_Dword | 32Bit Unsigned Integer |
EK_Longlong | 64Bit Signed Integer |
TnbAccessor.h の 79 行目に定義があります。
bool DeleteAllSection | ( | void | ) |
|
pure virtualinherited |
[削除] 指定セクション削除
lpszSectionName | セクション名。 |
true | 成功 |
false | 失敗 |
CDummyAccessor, CInifileAccessor, CRegistryAccessor, CTemporaryAccessor, CXmlAccessorで実装されています。
|
pure virtualinherited |
[取得] キー名一覧取得
lpszSectionName | セクション名 |
CDummyAccessor, CExInifileAccessor, CInifileAccessor, CRegistryAccessor, CTemporaryAccessor, CXmlAccessorで実装されています。
|
pure virtualinherited |
[取得] セクション名一覧取得
lpszSectionName | セクション名。 NULLを指定すると、ROOTのセクション一覧が得られます。 |
CDummyAccessor, CInifileAccessor, CRegistryAccessor, CTemporaryAccessor, CXmlAccessorで実装されています。
|
virtual |
[操作] フラッシュ.
IAccessorを実装しています。
CCeInifileAccessor, CCipherableFileAccessor, CDummyAccessor, CInifileAccessor, CInifileTextAccessor, CRegistryAccessor, CTemporaryAccessor, CXmlAccessor, CXmlFileAccessorで再実装されています。
TnbAccessor.h の 996 行目に定義があります。
|
pure virtualinherited |
[取得] 情報取種取得
lpszSectionName | セクション名 |
lpszKey | キー名 |
CDummyAccessor, CExInifileAccessor, CInifileAccessor, CRegistryAccessor, CTemporaryAccessor, CXmlAccessorで実装されています。
void GetKeyTree | ( | CKeyTree & | _tree | ) | const |
void GetKeyTree | ( | CStrsTree & | _tree | ) | const |
[取得] 全値取得
[out] | _tree | ツリー |
TnbAccessor.h の 1040 行目に定義があります。
|
pure virtualinherited |
[取得] タイプ名取得
CCeInifileAccessor, CCipherableFileAccessor, CDummyAccessor, CInifileAccessor, CInifileTextAccessor, CRegistryAccessor, CTemporaryAccessor, CXmlAccessor, CXmlFileAccessorで実装されています。
|
static |
CSection operator[] | ( | LPCTSTR | lpszSectionName | ) |
[取得] CSection取得
lpszSectionName | セクション名 |
TnbAccessor.h の 976 行目に定義があります。
const CSection operator[] | ( | LPCTSTR | lpszSectionName | ) | const |
[取得] CSection取得
lpszSectionName | セクション名 |
TnbAccessor.h の 986 行目に定義があります。
|
pure virtualinherited |
[取得] 情報取得
lpszSectionName | セクション名 |
lpszKey | キー名 |
CDummyAccessor, CExInifileAccessor, CInifileAccessor, CRegistryAccessor, CTemporaryAccessor, CXmlAccessorで実装されています。
|
staticinherited |
[変換] 配列変換.
IAccessor::CValue の配列に変換します。
vt | 配列 |
TnbAccessor.h の 940 行目に定義があります。
|
pure virtualinherited |
[設定] 情報設定
lpszSectionName | セクション名 |
lpszKey | キー名 |
value | 設定する値。EK_Nothing の場合、キーを削除します。 |
true | 成功 |
false | 失敗 |
CDummyAccessor, CExInifileAccessor, CInifileAccessor, CRegistryAccessor, CTemporaryAccessor, CXmlAccessorで実装されています。