-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathParse.hpp
More file actions
31 lines (27 loc) · 1.19 KB
/
Parse.hpp
File metadata and controls
31 lines (27 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/* ************************************************************************** */
/* */
/* :::::::: */
/* Parse.hpp :+: :+: */
/* +:+ */
/* By: emlicame <emlicame@student.codam.nl> +#+ */
/* +#+ */
/* Created: 2023/10/24 20:21:57 by emlicame #+# #+# */
/* Updated: 2023/10/24 20:22:02 by emlicame ######## odam.nl */
/* */
/* ************************************************************************** */
#ifndef PARSE_HPP
# define PARSE_HPP
# include "AClient.hpp"
# include "Command.hpp"
# include <tuple>
// std::tuple
# include <string>
// std::string
# include <vector>
// std::vector
namespace Parse
{
std::tuple<AClient &, std::string, std::vector<std::string> > \
parseMsg(AClient &user, std::string msg);
}
#endif