AM Daemon ライブラリリファレンス
IODeviceDef.h
[詳解]
1 /// @file
2 /// @brief 各種I/Oボード共通の定義を提供するヘッダ。
3 ///
4 /// Copyright(C)SEGA
5 
6 #ifndef AMDAEMON_IODEVICEDEF_H
7 #define AMDAEMON_IODEVICEDEF_H
8 
9 #include "amdaemon/env.h"
10 
11 #include <cstddef>
12 
13 namespace amdaemon
14 {
15  /// I/Oボード1個あたりの最大コインスロット数。
16  static const std::size_t MaxIODeviceCoinSlotCount = 2;
17 } // namespace amdaemon
18 
19 #endif // AMDAEMON_IODEVICEDEF_H
Daemonライブラリの環境定義を行うヘッダ。
AM Daemon ライブラリクラス群の基底名前空間。
Definition: Log.h:13
static const std::size_t MaxIODeviceCoinSlotCount
I/Oボード1個あたりの最大コインスロット数。
Definition: IODeviceDef.h:16