blob: 3a09d28017893422a5cadd0646153949a99f7c46 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#pragma once
#include "common.h"
class CParticipant : public Participant
{
public:
typedef DRef<CParticipant, Participant> Ref;
typedef DRefs<CParticipant, Participant> Refs;
CParticipant(unsigned int oid, SERootObject* root);
static SEString GetRankName(CParticipant::RANK rank);
};
|