equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2002 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: Class offers common utility methods. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 |
|
21 |
|
22 #ifndef WPAPUTIL_H |
|
23 #define WPAPUTIL_H |
|
24 |
|
25 // INCLUDES |
|
26 |
|
27 #include <e32std.h> |
|
28 |
|
29 // CLASS DECLARATION |
|
30 |
|
31 /** |
|
32 * WPAPUtil offers common helper methods. |
|
33 */ |
|
34 class WPAPUtil |
|
35 { |
|
36 public: // New methods |
|
37 |
|
38 /** |
|
39 * Loads a specified resource string from resource file. |
|
40 * @param aResourceId is of a resource string. |
|
41 * @return pointer to loaded descriptor. |
|
42 */ |
|
43 static HBufC* ReadHBufCL( TInt aResourceId ); |
|
44 |
|
45 }; |
|
46 |
|
47 #endif // WPAPUTIL_H |
|
48 |
|
49 // End of File |