|
1 /* |
|
2 * Copyright (c) 2007 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: Active Scheduler Test Module |
|
15 * |
|
16 */ |
|
17 |
|
18 // FileNameParameters.h: interface for the CFileNameParameters class. |
|
19 // |
|
20 ////////////////////////////////////////////////////////////////////// |
|
21 |
|
22 //#if !defined(AFX_FILENAMEPARAMETERS_H__77EC4487_6A81_4A9B_9CAE_C4D9913B5017__INCLUDED_) |
|
23 //#define AFX_FILENAMEPARAMETERS_H__77EC4487_6A81_4A9B_9CAE_C4D9913B5017__INCLUDED_ |
|
24 |
|
25 //#if _MSC_VER > 1000 |
|
26 //#pragma once |
|
27 //#endif // _MSC_VER > 1000 |
|
28 |
|
29 #ifndef __FILE_NAME_PARAMETERS |
|
30 #define __FILE_NAME_PARAMETERS |
|
31 |
|
32 #include "Parameters.h" |
|
33 |
|
34 class CFileNameParameters : public CParameters |
|
35 { |
|
36 protected: |
|
37 CFileNameParameters(TInt aAction); |
|
38 public: |
|
39 static CFileNameParameters* NewL(TInt aAction, TDesC &aFileName); |
|
40 static CFileNameParameters* NewLC(TInt aAction, TDesC &aFileName); |
|
41 virtual ~CFileNameParameters(); |
|
42 TFileName GetFileName(); |
|
43 |
|
44 private: |
|
45 void ConstructL(TDesC &aFileName); |
|
46 TFileName iFileName; |
|
47 }; |
|
48 |
|
49 //#endif // !defined(AFX_FILENAMEPARAMETERS_H__77EC4487_6A81_4A9B_9CAE_C4D9913B5017__INCLUDED_) |
|
50 #endif //__FILE_NAME_PARAMETERS |