🏗️」 wip: started file up

This commit is contained in:
2025-05-15 11:04:49 +02:00
parent 773e7855b0
commit 3300dcd057
2 changed files with 34 additions and 33 deletions

View File

@ -1,27 +0,0 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* AResource.cpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: mmoussou <mmoussou@student.42angouleme.fr +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/04/29 14:42:01 by mmoussou #+# #+# */
/* Updated: 2025/04/29 15:45:19 by adjoly ### ########.fr */
/* */
/* ************************************************************************** */
#include <server/AResource.hpp>
using namespace webserv;
using namespace server;
void AClientResource::addFileDescriptor(struct pollfd fd)
{
this->_fd = fd;
}
struct pollfd AClientResource::getFileDescriptor()
{
return (this->_fd);
}