diff -r 000000000000 -r 307788aac0a8 sipproviderplugins/sipprovider/sipconnectionplugins/inc/sipconnpref.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/sipproviderplugins/sipprovider/sipconnectionplugins/inc/sipconnpref.h Tue Feb 02 01:03:15 2010 +0200 @@ -0,0 +1,71 @@ +// Copyright (c) 2005-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: +// SIP extension events definition +// +// + +/** + @file + @publishedAll + @released since v9.2 +*/ + + +#ifndef SIPCONNPREFS_H +#define SIPCONNPREFS_H + +#include +#include + +/** The numeric value of SIP protocol family ID .*/ +const TUint KAFSip = 0x10000; + + +struct SSipConnPref +/** +This contains the information about the Id of the profile +@publishedAll +@released since v9.2 +*/ + { + /** The numeric value of SIP Profile ID **/ + TUint32 iProfileId; + }; + + +class TSipConnPref : public TConnPref +/** +This contains the information about the type of the connection preferences used by the SIP in the form of the profiles +@publishedAll +@released since v9.2 +*/ + { +public: + /** Constructor. */ + TSipConnPref(); + /** Sets the profile ID same as the prameter **/ + inline void SetProfileId(TUint32 aProfileId); + /** Gets the default profile ID **/ + inline TUint32 GetProfileId() const; + /** cast to appropriate SIP connection provider type **/ + inline static TSipConnPref& TSipConnPref::Cast(const TConnPref& aPref); + +protected: + inline SSipConnPref* PrefPtr() const; + + }; + +#include "sipconnpref.inl" + +#endif // sipconnpref.h