|
1 /* |
|
2 * Copyright (c) 2008 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: MBUtils ECOM definition |
|
15 * |
|
16 */ |
|
17 #include "tmrbcplugincommand.h" |
|
18 |
|
19 // ----------------------------------------------------------------------------- |
|
20 // TMRBCPluginCommand::TMRBCPluginCommand |
|
21 // ----------------------------------------------------------------------------- |
|
22 // |
|
23 TMRBCPluginCommand::TMRBCPluginCommand() |
|
24 { |
|
25 |
|
26 } |
|
27 |
|
28 // ----------------------------------------------------------------------------- |
|
29 // TMRBCPluginCommand::TMRBCPluginCommand |
|
30 // ----------------------------------------------------------------------------- |
|
31 // |
|
32 TMRBCPluginCommand::TMRBCPluginCommand( |
|
33 TInt aCommand, |
|
34 TInt aCheckEntryType ) |
|
35 : iCommand( aCommand ), |
|
36 iCheckEntryType( aCheckEntryType ) |
|
37 { |
|
38 |
|
39 } |
|
40 |
|
41 // ----------------------------------------------------------------------------- |
|
42 // TMRBCPluginCommand::Command |
|
43 // ----------------------------------------------------------------------------- |
|
44 // |
|
45 TInt TMRBCPluginCommand::Command() const |
|
46 { |
|
47 return iCommand; |
|
48 } |
|
49 |
|
50 // ----------------------------------------------------------------------------- |
|
51 // TMRBCPluginCommand::CheckEntryType |
|
52 // ----------------------------------------------------------------------------- |
|
53 // |
|
54 TBool TMRBCPluginCommand::CheckEntryType() const |
|
55 { |
|
56 return iCheckEntryType; |
|
57 } |
|
58 |
|
59 // EOF |