mmsharing/livecommsui/lcui/tsrc/mustester/Stubs/sipclientstub/src/Csipconnection.cpp
branchRCL_3
changeset 32 73a1feb507fb
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mmsharing/livecommsui/lcui/tsrc/mustester/Stubs/sipclientstub/src/Csipconnection.cpp	Tue Aug 31 15:12:07 2010 +0300
@@ -0,0 +1,85 @@
+/*
+* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
+* All rights reserved.
+* This component and the accompanying materials are made available
+* under the terms of "Eclipse Public License v1.0"
+* which accompanies this distribution, and is available
+* at the URL "http://www.eclipse.org/legal/epl-v10.html".
+*
+* Initial Contributors:
+* Nokia Corporation - initial contribution.
+*
+* Contributors:
+*
+* Description:
+*
+*/
+#include "sipconnection.h"
+#include "sip.h"
+#include "siperr.h"
+
+CSIPConnection::CSIPConnection(CSIP& aSIP,
+                               TUint32 aIapId,
+                               MSIPConnectionObserver& aObserver)
+ : iIapId(aIapId), iObserver(aObserver), iState(EActive)
+	{
+	iSIP = &aSIP;
+	}
+
+void CSIPConnection::ConstructL()
+	{
+	}
+
+
+EXPORT_C CSIPConnection* CSIPConnection::NewL(CSIP& aSIP,
+									 TUint32 aIapId,
+									 MSIPConnectionObserver& aSIPConnectionObserver)
+	{
+
+	CSIPConnection* self = new(ELeave) CSIPConnection(aSIP, aIapId, aSIPConnectionObserver);
+	CleanupStack::PushL(self);
+	self->ConstructL();
+	CleanupStack::Pop();
+	return self;
+
+	}
+
+
+EXPORT_C CSIPConnection::~CSIPConnection()
+	{
+	}
+
+EXPORT_C TUint32 CSIPConnection::IapId() const
+	{
+	return iIapId;
+	}
+	
+EXPORT_C CSIPConnection::TState CSIPConnection::State() const
+    {
+    return iState; 
+    }	
+
+EXPORT_C void CSIPConnection::SetState(TState aState)
+    {
+    iState = aState;
+    }
+    
+//TODO:Check if these new functions are needed in sip_stub
+
+// -----------------------------------------------------------------------------
+// CSIPConnection::SIP
+// -----------------------------------------------------------------------------
+//
+EXPORT_C CSIP* CSIPConnection::SIP()
+	{
+	return iSIP;
+	}
+ 
+// -----------------------------------------------------------------------------
+// CSIPConnection::SIP
+// -----------------------------------------------------------------------------
+//      
+EXPORT_C const CSIP* CSIPConnection::SIP() const
+	{
+	return iSIP;
+	}