From f908d28e72887b68391a246ceb328cb52dcb2aaa Mon Sep 17 00:00:00 2001 From: "Matthias P. Braendli" Date: Fri, 13 Jan 2017 10:38:58 +0100 Subject: Make UdpPacket copyable --- lib/UdpSocket.h | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) (limited to 'lib/UdpSocket.h') diff --git a/lib/UdpSocket.h b/lib/UdpSocket.h index f62db1d..f51e87c 100644 --- a/lib/UdpSocket.h +++ b/lib/UdpSocket.h @@ -2,7 +2,7 @@ Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009 Her Majesty the Queen in Right of Canada (Communications Research Center Canada) - Copyright (C) 2016 + Copyright (C) 2017 Matthias P. Braendli, matthias.braendli@mpb.li http://www.opendigitalradio.org @@ -24,8 +24,7 @@ along with ODR-DabMux. If not, see . */ -#ifndef _UDPSOCKET -#define _UDPSOCKET +#pragma once #ifdef HAVE_CONFIG_H # include "config.h" @@ -140,10 +139,6 @@ class UdpPacket */ UdpPacket(); UdpPacket(size_t initSize); - UdpPacket(const UdpPacket& packet) = delete; - const UdpPacket& operator=(const UdpPacket&) = delete; - UdpPacket(const UdpPacket&& packet) = delete; - const UdpPacket& operator=(const UdpPacket&&) = delete; /** Give the pointer to data. * @return The pointer @@ -177,4 +172,3 @@ class UdpPacket InetAddress address; }; -#endif // _UDPSOCKET -- cgit v1.2.3