15 * Description: |
15 * Description: |
16 * {{Description of the file}} |
16 * {{Description of the file}} |
17 * |
17 * |
18 */ |
18 */ |
19 |
19 |
20 #ifndef MYRENDERINGPLUGIN_H |
20 #ifndef __#replace#RENDERER_H |
21 #define MYRENDERINGPLUGIN_H |
21 #define __#replace#RENDERER_H |
22 |
22 |
23 #include <xnextrenderingpluginadapter.h> |
23 #include <xnextrenderingpluginadapter.h> |
24 |
24 |
25 // FORWARD DECLARATIONS |
25 // FORWARD DECLARATIONS |
26 |
26 |
27 class #replace#Renderer : public CXnExtRenderingPluginAdapter |
27 class C#replace#Renderer : public CXnExtRenderingPluginAdapter |
28 { |
28 { |
29 public: |
29 public: |
30 |
30 |
31 /** |
31 /** |
32 * Two-phased constructor. |
32 * Two-phased constructor. |
33 * @return Pointer to created object. |
33 * @return Pointer to created object. |
34 */ |
34 */ |
35 static #replace#Renderer* NewL(); |
35 static C#replace#Renderer* NewL(); |
36 |
36 |
37 /** |
37 /** |
38 * Two-phased constructor. |
38 * Two-phased constructor. |
39 * @return Pointer to created object. |
39 * @return Pointer to created object. |
40 */ |
40 */ |
41 static #replace#Renderer* NewLC(); |
41 static C#replace#Renderer* NewLC(); |
42 |
42 |
43 /** |
43 /** |
44 * Destructor. |
44 * Destructor. |
45 */ |
45 */ |
46 virtual ~#replace#Renderer(); |
46 virtual ~C#replace#Renderer(); |
47 |
47 |
48 public: // from base classes |
48 public: // from base classes |
49 |
49 |
50 /** |
50 /** |
51 * From CCoeControl Handles key events. |
51 * From CCoeControl Handles key events. |