24
|
1 |
// Copyright (c) 1997-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".
|
|
7 |
//
|
|
8 |
// Initial Contributors:
|
|
9 |
// Nokia Corporation - initial contribution.
|
|
10 |
//
|
|
11 |
// Contributors:
|
|
12 |
//
|
|
13 |
// Description:
|
|
14 |
//
|
|
15 |
|
|
16 |
/**
|
|
17 |
@file
|
|
18 |
*/
|
|
19 |
inline TVersion RTelServer::Version() const
|
|
20 |
/** Gets the version number of the ETel server.
|
|
21 |
|
|
22 |
@return The server version and build numbers.
|
|
23 |
@publishedPartner
|
|
24 |
@released
|
|
25 |
*/
|
|
26 |
{
|
|
27 |
return(TVersion(KEtelMajorVersionNumber,
|
|
28 |
KEtelMinorVersionNumber,
|
|
29 |
KEtelBuildVersionNumber));
|
|
30 |
}
|
|
31 |
|
|
32 |
//
|
|
33 |
// RTelSubSessionBase
|
|
34 |
//
|
|
35 |
inline RSessionBase& RTelSubSessionBase::SessionHandle() const
|
|
36 |
/**
|
|
37 |
@publishedPartner
|
|
38 |
@released
|
|
39 |
*/
|
|
40 |
{
|
|
41 |
return *iTelSession;
|
|
42 |
}
|
|
43 |
|
|
44 |
inline void RTelSubSessionBase::SetSessionHandle(RSessionBase& aTelSession)
|
|
45 |
/**
|
|
46 |
@publishedPartner
|
|
47 |
@released
|
|
48 |
*/
|
|
49 |
{
|
|
50 |
iTelSession=&aTelSession;
|
|
51 |
}
|
|
52 |
|
|
53 |
inline void RTelSubSessionBase::ResetSessionHandle()
|
|
54 |
/**
|
|
55 |
@publishedPartner
|
|
56 |
@released
|
|
57 |
*/
|
|
58 |
{
|
|
59 |
iTelSession=NULL;
|
|
60 |
}
|
|
61 |
|
|
62 |
inline TInt RTelSubSessionBase::SubSessionHandle()
|
|
63 |
/**
|
|
64 |
@publishedPartner
|
|
65 |
@released
|
|
66 |
*/
|
|
67 |
{
|
|
68 |
return(RSubSessionBase::SubSessionHandle());
|
|
69 |
}
|