-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreception.hpp
40 lines (34 loc) · 877 Bytes
/
reception.hpp
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
32
33
34
35
36
37
38
39
40
/*
** EPITECH PROJECT, 2020
** CCP_plazza_2019
** File description:
** reception
*/
#ifndef RECEPTION_HPP_
#define RECEPTION_HPP_
#include <vector>
#include <string>
#include <iostream>
class reception
{
private:
/* data */
protected:
std::vector<std::string> totalAddition;
std::vector<std::string> parseCommand;
int Cooks;
public:
reception(/* args */);
~reception() = default;
void parseLine(std::string);
std::vector<std::string> convertoWrite();
void printAddition(void);
int checkParsing(std::string);
void checkCloseKitchen(std::vector<int> *);
void manageKitchen(char *av[], int, std::vector<int> *);
void addKitchen(char *av[], std::vector<int> *);
void stringtoVec(char *);
};
void myReception(char *av[], std::vector<int> *);
std::vector<std::string> stringtoVec(char *line);
#endif /* !RECEPTION_HPP_ */