Protocol.hpp 352 B

123456789101112131415161718192021
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2022-11-17
  6. * Changed: 2022-11-17
  7. *
  8. * */
  9. #ifndef LS_STD_PROTOCOL_HPP
  10. #define LS_STD_PROTOCOL_HPP
  11. namespace ls::std::network
  12. {
  13. struct Protocol
  14. {
  15. int unixProtocol{};
  16. };
  17. }
  18. #endif