-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsmartutente.cpp
More file actions
64 lines (55 loc) · 1.32 KB
/
Copy pathsmartutente.cpp
File metadata and controls
64 lines (55 loc) · 1.32 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#include "smartutente.h"
#include "utente.h"
// COSTRUTTORE SmartUtente
SmartUtente::SmartUtente( Utente* u ) : user( u ) {
if( user )
user->references++;
}
// COSTRUTTORE di COPIA SmartUtente
SmartUtente::SmartUtente( const SmartUtente& su ) : user( su.user ) {
if( user )
user->references++;
}
// DISTRUTTORE SmartUtente
SmartUtente::~SmartUtente() {
if( user ) {
user->references--;
if( user->references == 0 )
delete user;
}
}
// OPERATORE = SmartUtente
SmartUtente& SmartUtente::operator =( const SmartUtente& su ) {
if( this != &su ) {
Utente* u = user;
user = su.user;
if( user )
user->references++;
if( u ) {
u->references--;
delete u;
}
}
return *this;
}
// OPERATORE * SmartUtente
Utente& SmartUtente::operator *() const {
return *user;
}
// OPERATORE -> SmartUtente
Utente* SmartUtente::operator ->() const {
return user;
}
// OPERATORE == SmartUtente
bool SmartUtente::operator ==( const SmartUtente& su ) {
return user == su.user;
}
// OPERATORE != SmartUtente
bool SmartUtente::operator !=( const SmartUtente& su ) {
return user != su.user;
}
// OPERATORE << SmartUtente
QDebug operator <<( QDebug qdbg, const SmartUtente& su ) {
qdbg << *su;
return qdbg;
}