37
|
1 |
/*
|
|
2 |
* Copyright (c) 2006 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 |
* Interface for manipulating divert information.
|
|
16 |
*
|
|
17 |
*/
|
|
18 |
|
|
19 |
|
|
20 |
#ifndef MPHONEDIVERTIF_H
|
|
21 |
#define MPHONEDIVERTIF_H
|
|
22 |
|
|
23 |
// INCLUDES
|
|
24 |
#include <e32def.h>
|
|
25 |
|
|
26 |
// CLASS DECLARATION
|
|
27 |
|
|
28 |
/**
|
|
29 |
* Handle all possible messages from Phone Engine
|
|
30 |
*/
|
|
31 |
class MPhoneDivertIF
|
|
32 |
{
|
|
33 |
public:
|
|
34 |
|
|
35 |
/**
|
|
36 |
* Destructor.
|
|
37 |
*/
|
|
38 |
virtual ~MPhoneDivertIF() {};
|
|
39 |
|
|
40 |
/**
|
|
41 |
* Setter for divert indication showing in bubble.
|
|
42 |
* @param aDivertIndication ETrue to show divert indication,
|
|
43 |
* EFalse to not. Usually setting EFalse isn't necessary
|
|
44 |
* as it's a default value in bubble creation.
|
|
45 |
*/
|
|
46 |
virtual void SetDivertIndication(
|
|
47 |
const TBool aDivertIndication ) = 0;
|
|
48 |
};
|
|
49 |
|
|
50 |
#endif // MPHONEDIVERTIF_H
|
|
51 |
|
|
52 |
// End of File
|