-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.h
38 lines (35 loc) · 840 Bytes
/
header.h
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
#include <iostream>
#include <string>
#include <limits>
#include <deque>
#include <algorithm>
#include <iomanip>
using namespace std;
class persona
{
private:
int id;
static int idgen;
string fam;
string name;
string och;
string whybad;
public:
persona();
persona(int m_id, string m_fam,string m_name,string m_och,string m_whybad);
persona(const persona &pers);
~persona(){}
friend istream& operator>>(istream& in, persona&pers);
friend ostream& operator<<(ostream& out,const persona&pers);
int get_id(){return id;}
string get_fam(){return fam;}
string get_name(){return name;}
string get_och(){return och;}
};
void imgdeque();
void imgmenu1();
void imgmenu2();
int checker();
void sortir(deque<persona> &);
void pasteafter(deque<persona>&);
void deletepi(deque<persona>&);