-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathParti.hh
More file actions
32 lines (28 loc) · 759 Bytes
/
Parti.hh
File metadata and controls
32 lines (28 loc) · 759 Bytes
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
#pragma once
#include <iostream>
#include <string>
#include <list>
#include <fstream>
#include <vector>
#include <set>
#define MAX_P 5
//#define THEME_PARTI 3
class Parti
{
public:
Parti();
std::string get_nom()const;
std::vector<std::string> get_lobby() const;
bool operator<(const Parti &)const;
std::string display() const;
private:
std::string _nom;
//std::vector<std::string> _lobby;
//static short _id;
static const std::string nom_p[MAX_P];
// static const std::string p_agressif[THEME_PARTI][2];
// static const std::string p_peace[THEME_PARTI][2];
// static const std::string p_zinzin[THEME_PARTI][2];
// static const std::string p_cuisine[THEME_PARTI][2];
// static const std::string p_maths[THEME_PARTI][2];
};