11 lines
171 B
C
11 lines
171 B
C
|
#ifndef SOCKET_H
|
||
|
#define SOCKET_H
|
||
|
|
||
|
#include "BasicSocket.h"
|
||
|
#include "SocketService.h"
|
||
|
|
||
|
namespace ZeroMQ {
|
||
|
using Socket = BasicSocket<SocketService>;
|
||
|
}
|
||
|
#endif // SOCKET_H
|