! \brief A data structure used to pass messages to the clientNotificationProcessor thread. * */
| 74 | * |
| 75 | */ |
| 76 | class ClientNotification |
| 77 | { |
| 78 | friend class ODClient; |
| 79 | |
| 80 | public: |
| 81 | ClientNotification(ClientNotificationType type); |
| 82 | virtual ~ClientNotification() |
| 83 | {} |
| 84 | |
| 85 | ODPacket mPacket; |
| 86 | |
| 87 | static std::string typeString(ClientNotificationType type); |
| 88 | |
| 89 | private: |
| 90 | ClientNotificationType mType; |
| 91 | }; |
| 92 | |
| 93 | #endif // CLIENTNOTIFICATION_H |
nothing calls this directly
no outgoing calls
no test coverage detected