diff -r 000000000000 -r 71ca22bcf22a mmserv/voipaudioservices/VoIPServer/inc/VoIPServer.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mmserv/voipaudioservices/VoIPServer/inc/VoIPServer.h Tue Feb 02 01:08:46 2010 +0200 @@ -0,0 +1,67 @@ +/* + * Copyright (c) 2007-2008 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: Definition of CVoIPAudioServer server class. + * + */ + +#ifndef __VOIPAUDIOSERVER_H +#define __VOIPAUDIOSERVER_H + +#include + +// FORWARD DECLARATIONS +class CVoIPAudioServerSession; +class CDelayVoIPServerShutDown; +class CVoIPECallEventHandler; + +// ----------------------------------------------------------------------------- +// CVoIPAudioServer class +// ----------------------------------------------------------------------------- +class CVoIPAudioServer : public CServer2 + { +public: + static CVoIPAudioServer* NewL(); + ~CVoIPAudioServer(); + + void AddSession(); + void DropSession(); + TInt SessionCount(); + void SetDnLinkSession(CVoIPAudioServerSession* aSession, TBool aStatus); + void SetUpLinkSession(CVoIPAudioServerSession* aSession, TBool aStatus); + TBool HasDnLinkSession(); + TBool HasUpLinkSession(); + + // ECall event handling + void StartECallEventNotifierL(); + void CancelECallEventNotifier(); + void NotifyECallEvent(TInt aECall); + +private: + CVoIPAudioServer(); + void ConstructL(); + CSession2* NewSessionL(const TVersion& aVersion, + const RMessage2& aMessage) const; + +private: + TInt iSession; + TBool iECallInProgress; + CDelayVoIPServerShutDown *iShutdownTimer; + CVoIPECallEventHandler* iECallHandler; + CVoIPAudioServerSession* iDnlinkSession; + CVoIPAudioServerSession* iUplinkSession; + }; + +#endif //__VOIPAUDIOSERVER_H + +// End of file