AM Daemon ライブラリリファレンス
AccountingMode.h
[詳解]
1 /// @file
2 /// @brief ALL.Net課金モード列挙 AccountingMode のヘッダ。
3 ///
4 /// Copyright(C)SEGA
5 
6 #ifndef AMDAEMON_ALLNET_ACCOUNTINGMODE_H
7 #define AMDAEMON_ALLNET_ACCOUNTINGMODE_H
8 
9 #include "amdaemon/env.h"
10 
11 namespace amdaemon
12 {
13 namespace allnet
14 {
15 /// @addtogroup g_allnet
16 /// @{
17 
18  /// ALL.Net課金モード列挙。
19  enum class AccountingMode
20  {
21  None = 0, ///< なし。課金非対応の場合など。
22  A, ///< モードA。
23  B1, ///< モードB1。
24  B2, ///< モードB2。
25  };
26 
27  /// @brief @ref AccountingMode 列挙値の文字列表現値を取得する。
28  /// @param[in] mode @ref AccountingMode 列挙値。
29  /// @return @ref AccountingMode 列挙値の文字列表現値。不正値の場合は nullptr 。
30  /// @internal ライブラリ実装メモ: enumsToString.cpp で実装。
31  const wchar_t* toString(AccountingMode mode);
32 
33 /// @}
34 } // namespace allnet
35 } // namespace amdaemon
36 
37 #endif // AMDAEMON_ALLNET_ACCOUNTINGMODE_H
Daemonライブラリの環境定義を行うヘッダ。
const wchar_t * toString(AccountingMode mode)
AccountingMode 列挙値の文字列表現値を取得する。
AM Daemon ライブラリクラス群の基底名前空間。
Definition: Log.h:13
なし。課金非対応の場合など。
AccountingMode
ALL.Net課金モード列挙。
Definition: AccountingMode.h:19