Check if client is actually connected to a server
| 761 | |
| 762 | // Check if client is actually connected to a server |
| 763 | bool IsConnected() |
| 764 | { |
| 765 | if (m_connection) |
| 766 | return m_connection->IsConnected(); |
| 767 | else |
| 768 | return false; |
| 769 | } |
| 770 | |
| 771 | public: |
| 772 | // Send message to server |
nothing calls this directly
no test coverage detected