AM Daemon ライブラリリファレンス
AccountingPlayCountMonth.h
[詳解]
1 /// @file
2 /// @brief ALL.Net課金プレイ回数集計月種別列挙 AccountingPlayCountMonth のヘッダ。
3 ///
4 /// Copyright(C)SEGA
5 
6 #ifndef AMDAEMON_ALLNET_ACCOUNTINGPLAYCOUNTMONTH_H
7 #define AMDAEMON_ALLNET_ACCOUNTINGPLAYCOUNTMONTH_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課金プレイ回数集計月種別列挙。
20  {
21  Current = 0, ///< 今月。
22  Last, ///< 先月。
23  BeforeLast, ///< 先々月。
24  };
25 
26  /// @brief @ref AccountingPlayCountMonth 列挙値の文字列表現値を取得する。
27  /// @param[in] month @ref AccountingPlayCountMonth 列挙値。
28  /// @return @ref AccountingPlayCountMonth 列挙値の文字列表現値。不正値の場合は nullptr 。
29  /// @internal ライブラリ実装メモ: enumsToString.cpp で実装。
30  const wchar_t* toString(AccountingPlayCountMonth month);
31 
32 /// @}
33 } // namespace allnet
34 } // namespace amdaemon
35 
36 #endif // AMDAEMON_ALLNET_ACCOUNTINGPLAYCOUNTMONTH_H
Daemonライブラリの環境定義を行うヘッダ。
AccountingPlayCountMonth
ALL.Net課金プレイ回数集計月種別列挙。
Definition: AccountingPlayCountMonth.h:19
const wchar_t * toString(AccountingMode mode)
AccountingMode 列挙値の文字列表現値を取得する。
AM Daemon ライブラリクラス群の基底名前空間。
Definition: Log.h:13