blob: 2d1e6ee0727175eb72d2b0779d036675e765deda (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#if !defined(HISTORYSTATS_GUARD_PROTOCOL_H)
#define HISTORYSTATS_GUARD_PROTOCOL_H
#include "stdafx.h"
#include "_consts.h"
#include <set>
class Protocol
{
public:
static ext::string getDisplayName(const ext::a::string& protocol);
public:
ext::string displayName;
};
#endif // HISTORYSTATS_GUARD_PROTOCOL_H
|