AM Daemon ライブラリリファレンス
AppImageDef.h
[詳解]
1 /// @file
2 /// @brief アプリイメージ関連の定数定義を提供するヘッダ。
3 ///
4 /// Copyright(C)SEGA
5 
6 #ifndef AMDAEMON_APPIMAGEDEF_H
7 #define AMDAEMON_APPIMAGEDEF_H
8 
9 #include "amdaemon/env.h"
10 
11 #include <cstddef>
12 
13 namespace amdaemon
14 {
15 /// @addtogroup g_appimage
16 /// @{
17 
18  /// @brief オプションイメージ識別名文字数。
19  /// @ingroup g_netdelivery
20  static const std::size_t OptionImageNameLength = 4;
21 
22 /// @}
23 } // namespace amdaemon
24 
25 #endif // AMDAEMON_APPIMAGEDEF_H
Daemonライブラリの環境定義を行うヘッダ。
AM Daemon ライブラリクラス群の基底名前空間。
Definition: Log.h:13
static const std::size_t OptionImageNameLength
オプションイメージ識別名文字数。
Definition: AppImageDef.h:20