Malloy
Loading...
Searching...
No Matches
lib
malloy
server
routing
endpoint.hpp
1
#pragma once
2
3
namespace
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
}
malloy::server::endpoint
Definition:
endpoint.hpp:10
Generated by
1.9.6