Malloy
Loading...
Searching...
No Matches
endpoint.hpp
1#pragma once
2
3namespace malloy::server
4{
5
9 struct endpoint
10 {
11 endpoint() = default;
12 endpoint(const endpoint& other) = default;
13 endpoint(endpoint&& other) noexcept = default;
14 virtual ~endpoint() = default;
15
16 endpoint& operator=(const endpoint& rhs) = default;
17 endpoint& operator=(endpoint&& rhs) noexcept = default;
18 };
19
20}
Definition: endpoint.hpp:10