epoc32/include/commdbconnpref.h
author William Roberts <williamr@symbian.org>
Tue, 16 Mar 2010 16:12:26 +0000
branchSymbian2
changeset 2 2fe1408b6811
parent 0 061f57f2323e
child 4 837f303aceeb
permissions -rw-r--r--
Final list of Symbian^2 public API header files

// Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
// All rights reserved.
// This component and the accompanying materials are made available
// under the terms of the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members
// which accompanies this distribution, and is available
// at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
//
// Initial Contributors:
// Nokia Corporation - initial contribution.
//
// Contributors:
//
// Description:
//



/**
 @file
 @deprecated since v9.1. Functionality is replaced with commsdat.
*/

#if !(defined COMMDBCONNPREF_H)
#define COMMDBCONNPREF_H

#include <connpref.h>
#include <cdbcols.h>

/**
Constant for storing Major Version Number
@internalTechnology
*/
const TInt8 KMajorVersionNumber = 8;

/**
Constant for storing Minor Version Number
*/
const TInt8 KMinorVersionNumber = 0;

/**
Constant for storing Build Version Number
*/
const TInt16 KBuildVersionNumber = 1;


/**
@internalTechnology
*/
struct SCommDbConnPref
	{
	TUint32 iIapId;
	TUint32 iNetId;
	TCommDbDialogPref iDialogPref;
	TCommDbConnectionDirection iDirection;
	TUint32 iBearerSet;
	};

class TCommDbConnPref : public TConnPref
/**
@publishedAll
@released since v7.0s
*/
	{
	friend class TCommDbMultiConnPref;
public:
	IMPORT_C TCommDbConnPref();
	IMPORT_C static TVersion Version();

	IMPORT_C void SetIapId(TUint32 aIapId);
	IMPORT_C TUint32 IapId() const;

	IMPORT_C void SetNetId(TUint32 aNetId);
	IMPORT_C TUint32 NetId() const;

	IMPORT_C void SetDialogPreference(TCommDbDialogPref aDialogPref);
	IMPORT_C TCommDbDialogPref DialogPreference() const;

	IMPORT_C void SetDirection(TCommDbConnectionDirection aDirection);
	IMPORT_C TCommDbConnectionDirection Direction() const;

	IMPORT_C void SetBearerSet(TUint32 aBearerSet);
	IMPORT_C TUint32 BearerSet() const;

	IMPORT_C virtual TInt Compare(const TCommDbConnPref& aPref) const;
	inline TBool operator==(const TCommDbConnPref& aPref) const;
	inline TBool operator!=(const TCommDbConnPref& aPref) const;

	inline static TCommDbConnPref& Cast(const TConnPref& aPref);

protected:
	inline SCommDbConnPref* PrefPtr() const;
	};

/**
@internalTechnology
*/
const TInt KMaxMultiConnPrefCount = 2;

/**
@internalTechnology
*/
struct SCommDbMultiConnPref
	{
	TInt iNumAttempts;
	struct SCommDbConnPref iPrefs[KMaxMultiConnPrefCount];
	};

class TCommDbMultiConnPref : public TConnPref
/**
@publishedAll
@released since v7.0s
*/
	{
public:
	IMPORT_C TCommDbMultiConnPref();
	IMPORT_C static TVersion Version();

	IMPORT_C TInt SetPreference(TInt aIndex, const TCommDbConnPref& aPref);
	IMPORT_C TInt GetPreference(TInt aIndex, TCommDbConnPref& aPref);

	IMPORT_C void SetConnectionAttempts(TInt aNumAttempts);
	IMPORT_C TInt ConnectionAttempts();

	inline static TCommDbMultiConnPref& Cast(const TConnPref& aPref);

protected:
	inline struct SCommDbMultiConnPref* PrefPtr() const;
	};

#include <commdbconnpref.inl>

#endif
// COMMDBCONNPREF_H