]> git.tdb.fi Git - libs/net.git/commitdiff
Adjust copyability of classes
authorMikko Rasa <tdb@tdb.fi>
Sun, 11 Dec 2022 11:54:17 +0000 (13:54 +0200)
committerMikko Rasa <tdb@tdb.fi>
Sun, 11 Dec 2022 16:26:44 +0000 (18:26 +0200)
In most cases the use of std::unique_ptr already makes classes move-only
where necessary.

source/http/client.h
source/net/communicator.h
source/net/sockaddr.h

index d79389a71d09bce9761243a56f255d019a2ddf97..cd53f61301c262417cf36a81f84a999dd5096e13 100644 (file)
@@ -41,8 +41,6 @@ private:
        std::unique_ptr<Response> response;
        std::string in_buf;
 
-       Client(const Client &);
-       Client &operator=(const Client &);
 public:
        ~Client();
 
index 822b16ef998dbd706d1ea1617950175d488496ca..b98f488ff3f63ef64016c6a22d23e4aaf188a93c 100644 (file)
@@ -2,6 +2,7 @@
 #define MSP_NET_COMMUNICATOR_H_
 
 #include <msp/core/except.h>
+#include <msp/core/noncopyable.h>
 #include <sigc++/signal.h>
 #include "protocol.h"
 
@@ -23,7 +24,7 @@ public:
 };
 
 
-class Communicator
+class Communicator: public NonCopyable
 {
 public:
        sigc::signal<void> signal_handshake_done;
index f2f96951e6920a31d4b79bfc154fac294cfa6440..817de4da48fea6d5e5730584aab2fedc63f35b7f 100644 (file)
@@ -22,6 +22,10 @@ public:
 
 protected:
        SockAddr() = default;
+       SockAddr(const SockAddr &) = default;
+       SockAddr(SockAddr &&) = default;
+       SockAddr &operator=(const SockAddr &) = default;
+       SockAddr &operator=(SockAddr &&) = default;
 public:
        virtual ~SockAddr() = default;