24
|
1 |
/**
|
|
2 |
* Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies).
|
|
3 |
* All rights reserved.
|
|
4 |
* This component and the accompanying materials are made available
|
|
5 |
* under the terms of "Eclipse Public License v1.0"
|
|
6 |
* which accompanies this distribution, and is available
|
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
|
8 |
*
|
|
9 |
* Initial Contributors:
|
|
10 |
* Nokia Corporation - initial contribution.
|
|
11 |
*
|
|
12 |
* Contributors:
|
|
13 |
*
|
|
14 |
* Description:
|
|
15 |
* NetDial Script Commands inline functions.
|
|
16 |
*
|
|
17 |
*
|
|
18 |
*/
|
|
19 |
|
|
20 |
|
|
21 |
|
|
22 |
/**
|
|
23 |
@file Scommand.inl
|
|
24 |
*/
|
|
25 |
|
|
26 |
#ifndef __SCOMMAND_INL__
|
|
27 |
#define __SCOMMAND_INL__
|
|
28 |
|
|
29 |
#include "SCOMMAND.H"
|
|
30 |
|
|
31 |
inline TPtr CLabelSearch::LabelName() const
|
|
32 |
/**
|
|
33 |
Returns label name
|
|
34 |
*/
|
|
35 |
{
|
|
36 |
return iLabelName->Des();
|
|
37 |
}
|
|
38 |
|
|
39 |
|
|
40 |
inline CCommChatString* CLabelSearch::ChatString() const
|
|
41 |
/**
|
|
42 |
Returns chat string
|
|
43 |
*/
|
|
44 |
{
|
|
45 |
return iChatString;
|
|
46 |
}
|
|
47 |
|
|
48 |
inline void CLabelSearch::Set(TLabelSearchStatus aStatus,const TLinePosition& aPosition)
|
|
49 |
/**
|
|
50 |
Sets iStatus and iPosition.
|
|
51 |
*/
|
|
52 |
{
|
|
53 |
iStatus=aStatus;
|
|
54 |
iPosition=aPosition;
|
|
55 |
}
|
|
56 |
|
|
57 |
inline void CLoopCommand::Loop(TBool aLoop)
|
|
58 |
/**
|
|
59 |
Set iLoop.
|
|
60 |
*/
|
|
61 |
{
|
|
62 |
iLoop=aLoop;
|
|
63 |
}
|
|
64 |
|
|
65 |
#endif
|