RType
RType.cpp
Go to the documentation of this file.
1 /*
2 ** EPITECH PROJECT, 2023
3 ** RType
4 ** File description:
5 ** RType.cpp
6 */
7 
8 #include "RType.hpp"
9 
10 #include <utility>
11 
12 /**
13  * @brief Construct a new RType:: RType object
14  * @param serverSocket
15  */
16 extern "C" RType *create(std::shared_ptr<ServerSocket> socket)
17 {
18  return new RType(std::move(socket));
19 }