Update contrib.
1 // Copyright (c) 1994-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
21 CWsObject::CWsObject(CWsClient* aOwner, WH_HANDLES aType)
22 : iType(aType), iWsOwner(aOwner)
24 __DECLARE_NAME(_S("CWsObject"));
27 CWsObject::~CWsObject()
32 void CWsObject::CloseObject()
37 void CWsObject::RemoveFromIndex()
41 iWsOwner->ObjectIndex()->Remove(this);
46 void CWsObject::NewObjL()
49 SetReply(iWsOwner->ObjectIndex()->AddL(this));
52 TInt CWsObject::LogHandle() const
54 return(iWsOwner ? iWsOwner->ObjectHandle(this) : 0);
57 void CWsObject::SetReply(TInt aReply)
59 iWsOwner->SetReply(aReply);
62 void CWsObject::OwnerPanic(TClientPanic aPanic) const
66 iWsOwner->PPanic(aPanic);
70 User::Leave(CWsClient::EPanicLeave);