CTR Pia  4.11.3
Game Communication Engine
session_SessionStationInfo.h
1 /*---------------------------------------------------------------------------*
2  Project: Pia
3  File: session_SessionStationInfo.h
4 
5  Copyright Nintendo. All rights reserved.
6 
7  These coded instructions, statements, and computer programs contain
8  proprietary information of Nintendo of America Inc. and/or Nintendo
9  Company Ltd., and are protected by Federal copyright law. They may
10  not be disclosed to third parties or copied or duplicated in any form,
11  in whole or in part, without the prior written consent of Nintendo.
12  *---------------------------------------------------------------------------*/
13 
14 
15 #pragma once
16 
17 #include <pia/session/session_definitions.h>
18 
19 namespace nn
20 {
21 namespace pia
22 {
23 namespace session
24 {
25 
26 /*!
27 @brief Represents information about a station that is participating in a session.
28 
29 @date 2014-05-27 Initial version.
30 */
32 {
33 protected:
35  {
36  }
37  virtual ~SessionStationInfo()
38  {
39  }
40 };
41 }
42 }
43 } // end of namespace nn::pia::session
Definition: assert.h:115
Represents information about a station that is participating in a session.
Definition: session_SessionStationInfo.h:31
This is the common base class used inside the Pia library.
Definition: common_RootObject.h:40