uvco 0.1
Loading...
Searching...
No Matches
stream_server_base_impl.h
Go to the documentation of this file.
1// uvco (c) 2024 Lewin Bormann. See LICENSE for specific terms.
2
3#pragma once
4
5#include <uv.h>
6
8#include "uvco/tcp_stream.h"
9#include "uvco/uds_stream.h"
10
11namespace uvco {
12
13// Instantiated in stream_server_base_impl.cc to avoid keeping the templates in
14// a header.
15template class StreamServerBase<uv_tcp_t, TcpStream>;
16template class StreamServerBase<uv_pipe_t, UnixStream>;
17
18} // namespace uvco
Definition async_work.cc:17