36
|
1 |
/*
|
|
2 |
* Copyright (c) 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: Profile extra tones2 interface.
|
|
15 |
*
|
|
16 |
*/
|
|
17 |
|
|
18 |
|
|
19 |
|
|
20 |
#ifndef __MPROFILEEXTRATONES2_H
|
|
21 |
#define __MPROFILEEXTRATONES2_H
|
|
22 |
|
|
23 |
// INCLUDES
|
|
24 |
#include <e32std.h>
|
|
25 |
#include <MProfileExtraTones.h>
|
|
26 |
|
|
27 |
// CLASS DECLARATION
|
|
28 |
|
|
29 |
/**
|
|
30 |
* Profile extra tones interface.
|
|
31 |
* This interface offers method to get IM message alert tone file name.
|
|
32 |
*
|
|
33 |
* @lib N/A
|
|
34 |
* @since 10.1
|
|
35 |
*/
|
|
36 |
class MProfileExtraTones2 : public MProfileExtraTones
|
|
37 |
{
|
|
38 |
protected: // Destructor
|
|
39 |
|
|
40 |
virtual ~MProfileExtraTones2() {};
|
|
41 |
|
|
42 |
public:
|
|
43 |
/**
|
|
44 |
* Returns reminder tone file name.
|
|
45 |
* @since 10.1
|
|
46 |
* @return Returns reminder tone file name.
|
|
47 |
*/
|
|
48 |
virtual const TDesC& ReminderTone() const = 0;
|
|
49 |
|
|
50 |
/**
|
|
51 |
* Returns clock alarm tone file name.
|
|
52 |
* @since 10.1
|
|
53 |
* @return Returns clock alarm tone file name.
|
|
54 |
*/
|
|
55 |
virtual const TDesC& ClockAlarmTone() const = 0;
|
|
56 |
};
|
|
57 |
|
|
58 |
|
|
59 |
#endif // __MPROFILEEXTRATONES2_H
|
|
60 |
|
|
61 |
// End of File
|