Fixed missing implementation of copy ctor/ assignment operator
authorJaehwan Lee <jh8379.lee@samsung.com>
Fri, 5 Apr 2013 06:42:09 +0000 (15:42 +0900)
committerJaehwan Lee <jh8379.lee@samsung.com>
Fri, 5 Apr 2013 07:04:36 +0000 (16:04 +0900)
Change-Id: I1f0ff42fd71ecb7050805f72e8523d0f1672b9b9
Signed-off-by: Jaehwan Lee <jh8379.lee@samsung.com>
inc/FNetWifiWifiBssInfo.h
src/wifi/FNetWifiWifiDirectGroupMember.cpp

index 8740d70..a140cb4 100644 (file)
@@ -381,7 +381,7 @@ public:
         *
         * @return      An error code
         * @param[in]   address             The proxy address containing the IP address and port. @n
-        *                                  For instance, 'proxy.example.com:3125' or '192.168.0.1:8080'
+        *                                  For example, 'proxy.example.com:3125' or '192.168.0.1:8080'.
         * @exception   E_INVALID_OPERATION The current state of the instance prohibits the execution of this operation.
         *                                  For example, the specified input type is @c NET_PROXY_TYPE_NONE.
         * @remarks     The existing proxy address is unset when the input argument is an empty string.
index d348712..2f6c23d 100644 (file)
@@ -32,6 +32,25 @@ WifiDirectGroupMember::WifiDirectGroupMember(void)
 
 }
 
+WifiDirectGroupMember::WifiDirectGroupMember(const WifiDirectGroupMember& value)
+       : _groupMemberType(value._groupMemberType)
+       , _pWifiDirectGroupMemberImpl(null)
+{
+
+}
+
+WifiDirectGroupMember&
+WifiDirectGroupMember::operator =(const WifiDirectGroupMember& rhs)
+{
+       if (this != &rhs)
+       {
+               _groupMemberType = rhs._groupMemberType;
+               _pWifiDirectGroupMemberImpl= null;
+       }
+
+       return *this;
+}
+
 
 WifiDirectGroupMemberType
 WifiDirectGroupMember::GetGroupMemberType(void) const