X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;ds=sidebyside;f=dali%2Fpublic-api%2Fsignals%2Fslot-delegate.h;h=251a2d8c952c8dc2f4d479b437e0e1b34d114f7b;hb=65c4dd1775aa2210c9e0cfcdb6f130afaf0a30e4;hp=405ed6559c9e1e0a3d85875cc0557484165d3877;hpb=4d49fa23b59d563831bf11409e19c2bc6091a452;p=platform%2Fcore%2Fuifw%2Fdali-core.git diff --git a/dali/public-api/signals/slot-delegate.h b/dali/public-api/signals/slot-delegate.h index 405ed65..251a2d8 100644 --- a/dali/public-api/signals/slot-delegate.h +++ b/dali/public-api/signals/slot-delegate.h @@ -2,7 +2,7 @@ #define DALI_SLOT_DELEGATE_H /* - * Copyright (c) 2019 Samsung Electronics Co., Ltd. + * Copyright (c) 2020 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -139,8 +139,10 @@ public: private: - SlotDelegate( const SlotDelegate& ); ///< undefined copy constructor @SINCE_1_0.0 - SlotDelegate& operator=( const SlotDelegate& ); ///< undefined assignment operator @SINCE_1_0.0 + SlotDelegate( const SlotDelegate& ) = delete; ///< Deleted copy constructor. @SINCE_1_0.0 + SlotDelegate( SlotDelegate&& ) = delete; ///< Deleted move constructor. @SINCE_1_9.25 + SlotDelegate& operator=( const SlotDelegate& ) = delete; ///< Deleted copy assignment operator. @SINCE_1_0.0 + SlotDelegate& operator=( SlotDelegate&& ) = delete; ///< Deleted move assignment operator. @SINCE_1_9.25 private: