sl@0: // Copyright (c) 1994-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // Common object code sl@0: // sl@0: // sl@0: sl@0: #include "OBJECT.H" sl@0: #include "CLIENT.H" sl@0: sl@0: CWsObject::CWsObject(CWsClient* aOwner, WH_HANDLES aType) sl@0: : iType(aType), iWsOwner(aOwner) sl@0: { sl@0: __DECLARE_NAME(_S("CWsObject")); sl@0: } sl@0: sl@0: CWsObject::~CWsObject() sl@0: { sl@0: RemoveFromIndex(); sl@0: } sl@0: sl@0: void CWsObject::CloseObject() sl@0: { sl@0: delete this; sl@0: } sl@0: sl@0: void CWsObject::RemoveFromIndex() sl@0: { sl@0: if (iWsOwner) sl@0: { sl@0: iWsOwner->ObjectIndex()->Remove(this); sl@0: iWsOwner=NULL; sl@0: } sl@0: } sl@0: sl@0: void CWsObject::NewObjL() sl@0: { sl@0: if (iWsOwner) sl@0: SetReply(iWsOwner->ObjectIndex()->AddL(this)); sl@0: } sl@0: sl@0: TInt CWsObject::LogHandle() const sl@0: { sl@0: return(iWsOwner ? iWsOwner->ObjectHandle(this) : 0); sl@0: } sl@0: sl@0: void CWsObject::SetReply(TInt aReply) sl@0: { sl@0: iWsOwner->SetReply(aReply); sl@0: } sl@0: sl@0: void CWsObject::OwnerPanic(TClientPanic aPanic) const sl@0: { sl@0: if ( iWsOwner ) sl@0: { sl@0: iWsOwner->PPanic(aPanic); sl@0: } sl@0: else sl@0: { sl@0: User::Leave(CWsClient::EPanicLeave); sl@0: } sl@0: } sl@0: