blob: 8b25254a0ed57d00154e5c89515e1c2196e04432 (
plain)
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
|
#include "participant.h"
CParticipant::CParticipant(unsigned int oid, SERootObject* root) : Participant(oid, root) { }
SEString CParticipant::GetRankName(CParticipant::RANK rank)
{
char *result = NULL;
switch (rank)
{
case CParticipant::CREATOR:
result = "Creator";
break;
case CParticipant::ADMIN:
result = "Admin";
break;
case CParticipant::SPEAKER:
result = "Speaker";
break;
case CParticipant::WRITER:
result = "Writer";
break;
case CParticipant::SPECTATOR:
result = "Spectator";
break;
case CParticipant::RETIRED:
result = "Retried";
break;
case CParticipant::OUTLAW:
result = "Outlaw";
break;
}
return result;
}
|