15
|
1 |
/*
|
|
2 |
* Copyright (c) 2010 Kanrikogaku Kenkyusho, Ltd.
|
|
3 |
* All rights reserved.
|
|
4 |
* This component and the accompanying materials are made available
|
|
5 |
* under the terms of the License "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 |
* Kanrikogaku Kenkyusho, Ltd. - Initial contribution
|
|
11 |
*
|
|
12 |
* Contributors:
|
|
13 |
*
|
|
14 |
* Description:
|
|
15 |
* This class is the message utility class of DirectPrint
|
|
16 |
*
|
|
17 |
*/
|
|
18 |
|
|
19 |
#ifndef __DIRECTPRINTMSGUTIL_H__
|
|
20 |
#define __DIRECTPRINTMSGUTIL_H__
|
|
21 |
|
|
22 |
// System includes
|
|
23 |
#include <e32base.h>
|
|
24 |
#include <f32file.h>
|
|
25 |
|
|
26 |
// User includes
|
|
27 |
|
|
28 |
// Forward declarations
|
|
29 |
|
|
30 |
// Class declaration
|
|
31 |
/**
|
|
32 |
* one_line_short_description
|
|
33 |
* more_complete_description
|
|
34 |
*
|
|
35 |
*/
|
|
36 |
class CDirectPrintMsgUtil : public CBase
|
|
37 |
{
|
|
38 |
public:
|
|
39 |
static CDirectPrintMsgUtil* NewL();
|
|
40 |
static CDirectPrintMsgUtil* NewLC();
|
|
41 |
~CDirectPrintMsgUtil();
|
|
42 |
|
|
43 |
/**
|
|
44 |
* Displays error note
|
|
45 |
* @param aResourceId Resource id for note text.
|
|
46 |
*/
|
|
47 |
static void DisplayErrorNoteL( TInt aResourceId );
|
|
48 |
|
|
49 |
protected:
|
|
50 |
CDirectPrintMsgUtil();
|
|
51 |
void ConstructL();
|
|
52 |
|
|
53 |
private:
|
|
54 |
};
|
|
55 |
|
|
56 |
#endif // __DIRECTPRINTMSGUTIL_H__
|
|
57 |
// End of file
|