-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIMonitorNcurses.class.cpp
37 lines (29 loc) · 1.32 KB
/
IMonitorNcurses.class.cpp
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
// ************************************************************************** //
// //
// ::: :::::::: //
// IMonitorNcurses.class.cpp :+: :+: :+: //
// +:+ +:+ +:+ //
// By: oposhiva <marvin@42.fr> +#+ +:+ +#+ //
// +#+#+#+#+#+ +#+ //
// Created: 2017/11/12 18:55:18 by oposhiva #+# #+# //
// Updated: 2017/11/12 18:55:18 by oposhiva ### ########.fr //
// //
// ************************************************************************** //
#include "IMonitorNcurses.class.hpp"
IMonitorNcurses::IMonitorNcurses() {}
void IMonitorNcurses::display() {
get_h().print();
get_d().print();
get_s().print();
get_r().print();
get_n().print();
get_c().print();
}
IMonitorNcurses::IMonitorNcurses( IMonitorNcurses const &rhs ) {
*this = rhs;
}
IMonitorNcurses & IMonitorNcurses::operator=( IMonitorNcurses const &rhs ) {
( void )rhs;
return ( *this );
}
IMonitorNcurses::~IMonitorNcurses() {}