equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2006 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: Constructs / destroyes the recognition selection handler |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 #ifndef VCOMMANDRECOGMANAGER_H |
|
21 #define VCOMMANDRECOGMANAGER_H |
|
22 |
|
23 class CVCRecognitionHandler; |
|
24 class CNssSelectNotificationBuilder; |
|
25 |
|
26 /** |
|
27 * Prepares the recognition selection handling facilities and destroys them. |
|
28 * In particular establishes and managed the connections to VAS |
|
29 */ |
|
30 class CVCRecognitionManager : public CBase |
|
31 { |
|
32 public: |
|
33 /** |
|
34 * Factory function |
|
35 * @todo Remove comments for such a simple and standard methods? |
|
36 */ |
|
37 IMPORT_C static CVCRecognitionManager* NewL(); |
|
38 |
|
39 /** |
|
40 * Destructor |
|
41 */ |
|
42 IMPORT_C virtual ~CVCRecognitionManager(); |
|
43 |
|
44 private: |
|
45 void ConstructL(); |
|
46 |
|
47 private: |
|
48 // Selection handling logic |
|
49 CVCRecognitionHandler* iRecognitionHandler; |
|
50 |
|
51 // VAS counterpart |
|
52 CNssSelectNotificationBuilder* iSelectNotificationBuilder; |
|
53 }; |
|
54 |
|
55 #endif // VCOMMANDRECOGMANAGER_H |