CTR-Pia  5.4.3
Game Communication Engine
 全て クラス ネームスペース 関数 変数 型定義 列挙型 列挙型の値 ページ
session_UpdateCommunitySetting.h
1 /*--------------------------------------------------------------------------------*
2  Copyright (C)Nintendo All rights reserved.
3 
4  These coded instructions, statements, and computer programs contain proprietary
5  information of Nintendo and/or its licensed developers and are protected by
6  national and international copyright laws. They may not be disclosed to third
7  parties or copied or duplicated in any form, in whole or in part, without the
8  prior written consent of Nintendo.
9 
10  The content herein is highly confidential and should be handled accordingly.
11  *--------------------------------------------------------------------------------*/
12 
13 
14 #pragma once
15 
16 #include <nn/pia/session/session_Definitions.h>
17 #include <nn/pia/session/session_Types.h>
18 
19 namespace nn
20 {
21 namespace pia
22 {
23 namespace session
24 {
25 
26 /*!
27  @brief コミュニティ設定の更新処理に関する設定を管理する基底クラスです。
28  @details アプリケーションが本クラスのインスタンスを作成することはありません。 本クラスを継承したクラスを使用する必要があります。
29  @see inet::NexUpdateCommunitySetting
30  */
31 
33 {
34 public:
35  /*!
36  @brief デストラクタ
37  */
39  {
40  }
41 
42  /*!
43  @brief 設定をリセットします。
44  */
45  virtual void Reset() = 0;
46 
47 protected:
48  // コンストラクタ。
50  {
51  }
52 
53 private:
54  NN_PIA_DISALLOW_COPY(UpdateCommunitySetting);
55 };
56 }
57 }
58 } // end of namespace session