diff --git a/src/pvxs/server.h b/src/pvxs/server.h index c113b70..d521786 100644 --- a/src/pvxs/server.h +++ b/src/pvxs/server.h @@ -59,6 +59,10 @@ public: constexpr Server() = default; //! Create/allocate, but do not start, a new server with the provided config. explicit Server(const Config&); + Server(const Server&) = default; + Server(Server&& o) = default; + Server& operator=(const Server&) = default; + Server& operator=(Server&& o) = default; ~Server(); /** Create new server based on configuration from $EPICS_PVA* environment variables.