My Project
CConnection.hpp
1 /*
2 ** EPITECH PROJECT, 2022
3 ** B-CPP-500-PAR-5-1-rtype-martin.vanaud
4 ** File description:
5 ** CConnection
6 */
7 
8 #ifndef CCONNECTION_HPP_
9  #define CCONNECTION_HPP_
10 
14 namespace Component {
18  struct cconnection_t {
19  bool _isConnected;
20  };
21 }
22 
23 #endif /* !CCONNECTION_HPP_ */
Component
Namespace for all components.
Definition: CConnection.hpp:14
Component::cconnection_t::_isConnected
bool _isConnected
Know if client is connected.
Definition: CConnection.hpp:19
Component::cconnection_t
Strucure representing wether the client is connected to the the server or not.
Definition: CConnection.hpp:18