author | Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com> |
Fri, 17 Sep 2010 08:29:29 +0300 | |
changeset 50 | c44f9bb56771 |
parent 28 | 075425b8d9a4 |
child 37 | 451b2e1545b2 |
child 57 | 21be958eb3ce |
permissions | -rw-r--r-- |
24 | 1 |
/* |
2 |
* Copyright (c) 2009 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: |
|
15 |
* |
|
16 |
*/ |
|
17 |
||
18 |
#ifndef RADIOCONTROLSERVICE_H |
|
19 |
#define RADIOCONTROLSERVICE_H |
|
20 |
||
21 |
// System includes |
|
28
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
22 |
#include <xqserviceprovider.h> |
24 | 23 |
|
24 |
// User includes |
|
25 |
||
26 |
// Forward declarations |
|
27 |
class RadioUiEngine; |
|
28 |
||
29 |
class RadioControlService : public XQServiceProvider |
|
30 |
{ |
|
31 |
Q_OBJECT |
|
32 |
||
33 |
public: |
|
34 |
||
35 |
RadioControlService( RadioUiEngine& engine ); |
|
36 |
virtual ~RadioControlService(); |
|
37 |
||
38 |
||
39 |
public slots: |
|
40 |
||
41 |
void command( int commandId ); |
|
42 |
||
43 |
private: // data |
|
44 |
||
45 |
RadioUiEngine& mUiEngine; |
|
46 |
||
47 |
}; |
|
48 |
||
49 |
#endif // RADIOCONTROLSERVICE_H |