AM Daemon ライブラリリファレンス
AimeLogStatus.h
[詳解]
1 /// @file
2 /// @brief Aimeログステータス列挙 AimeLogStatus のヘッダ。
3 ///
4 /// Copyright(C)SEGA
5 
6 #ifndef AMDAEMON_AIMELOGSTATUS_H
7 #define AMDAEMON_AIMELOGSTATUS_H
8 
9 #include "amdaemon/env.h"
10 
11 namespace amdaemon
12 {
13 /// @addtogroup g_aime
14 /// @{
15 
16  /// Aimeログステータス列挙。
17  enum class AimeLogStatus
18  {
19  Enter = 0, ///< ゲームプレイ開始。
20  Continue, ///< コンティニュー。
21  Leave, ///< ゲームプレイ終了。
22  };
23 
24  /// @brief @ref AimeLogStatus 列挙値の文字列表現値を取得する。
25  /// @param[in] status @ref AimeLogStatus 列挙値。
26  /// @return @ref AimeLogStatus 列挙値の文字列表現値。不正値の場合は nullptr 。
27  /// @internal ライブラリ実装メモ: enumsToString.cpp で実装。
28  const wchar_t* toString(AimeLogStatus status);
29 
30 /// @}
31 } // namespace amdaemon
32 
33 #endif // AMDAEMON_AIMELOGSTATUS_H
Daemonライブラリの環境定義を行うヘッダ。
AimeLogStatus
Aimeログステータス列挙。
Definition: AimeLogStatus.h:17
AM Daemon ライブラリクラス群の基底名前空間。
Definition: Log.h:13
const wchar_t * toString(AimeCommand command)
AimeCommand 列挙値の文字列表現値を取得する。
ゲームプレイ開始。
ゲームプレイ終了。
コンティニュー。