projects
/
libs
/
net.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Move the definition of PacketTypeDef<T>::class_id to a separate header
[libs/net.git]
/
source
/
net
/
protocol_impl.h
1
#ifndef MSP_NET_PROTOCOL_IMPL_H_
2
#define MSP_NET_PROTOCOL_IMPL_H_
3
4
#include "protocol.h"
5
6
namespace Msp {
7
namespace Net {
8
9
template<typename P>
10
unsigned Protocol::PacketTypeDef<P>::class_id = 0;
11
12
} // namespace Net
13
} // namespace Msp
14
15
#endif