MCPcopy Create free account
hub / github.com/OpenDungeons/OpenDungeons / ClientNotification

Class ClientNotification

source/network/ClientNotification.h:76–91  ·  view source on GitHub ↗

! \brief A data structure used to pass messages to the clientNotificationProcessor thread. * */

Source from the content-addressed store, hash-verified

74 *
75 */
76class ClientNotification
77{
78 friend class ODClient;
79
80public:
81 ClientNotification(ClientNotificationType type);
82 virtual ~ClientNotification()
83 {}
84
85 ODPacket mPacket;
86
87 static std::string typeString(ClientNotificationType type);
88
89private:
90 ClientNotificationType mType;
91};
92
93#endif // CLIENTNOTIFICATION_H

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected