equal
deleted
inserted
replaced
|
1 // Copyright (c) 2004-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 // OpenFileByFileHandle_PlayTone.h |
|
15 // Header file: Tone Test: Open file by handle. |
|
16 // |
|
17 // |
|
18 |
|
19 /** |
|
20 @file OpenFileByFileHandle_PlayTone.h |
|
21 */ |
|
22 |
|
23 #ifndef OpenFileByFileHandle_PlayTone_h__ |
|
24 #define OpenFileByFileHandle_PlayTone_h__ |
|
25 |
|
26 #include "TestTone.h" |
|
27 |
|
28 /** |
|
29 * Play a tone file |
|
30 * |
|
31 * @class CTestMmfAclntOpenToneFile |
|
32 * |
|
33 */ |
|
34 |
|
35 class CTestMmfAclntOpenToneFile : public CTestMmfAclntTone |
|
36 { |
|
37 public: |
|
38 static CTestMmfAclntOpenToneFile* NewL( const TDesC& aTestName, const TDesC& aSectName, const TDesC& aKeyName ); |
|
39 virtual TVerdict DoTestStepL(); |
|
40 virtual TVerdict DoTestStepPreambleL(); |
|
41 |
|
42 protected: |
|
43 CTestMmfAclntOpenToneFile( const TDesC& aTestName, const TDesC& aSectName, const TDesC& aKeyName ); |
|
44 |
|
45 TInt iFrequency; |
|
46 TBuf<KNameBufSize> iSectName; |
|
47 TBuf<KNameBufSize> iKeyName; |
|
48 }; |
|
49 |
|
50 #endif // OpenFileByFileHandle_PlayTone_h__ |