🏗️」 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

@ -0,0 +1,32 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* FileUpload.hpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: adjoly <adjoly@student.42angouleme.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/05/13 18:14:45 by adjoly #+# #+# */
/* Updated: 2025/05/13 18:56:25 by adjoly ### ########.fr */
/* */
/* ************************************************************************** */
#pragma once
#include "server/AResource.hpp"
namespace webserv {
namespace server {
class FileUpload : public AClientResource {
public:
FileUpload(int id) { _res_id = id; }
~FileUpload(void) {}
clientResType type(void) const { return UP_FILE; }
protected:
private:
};
} // namespace server
} // namespace webserv