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: This file defines the container trigger entry class |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #include <lbttriggerdynamicinfo.h> |
|
20 |
|
21 #include "lbtcontainerAOOperation.h" |
|
22 |
|
23 // ======== MEMBER FUNCTIONS ======== |
|
24 |
|
25 // --------------------------------------------------------------------------- |
|
26 // CLbtContainerAOOperation::NewL() |
|
27 // |
|
28 // (other items were commented in a header). |
|
29 // --------------------------------------------------------------------------- |
|
30 // |
|
31 |
|
32 |
|
33 |
|
34 void CLbtContainerAOOperation::SetPrevReturnCode(TInt aErr) |
|
35 { |
|
36 iPrevRetCode = aErr; |
|
37 } |
|
38 |
|
39 TInt CLbtContainerAOOperation::GetPrevReturnCode() |
|
40 { |
|
41 return iPrevRetCode; |
|
42 } |
|
43 |
|
44 void CLbtContainerAOOperation::SetCurrentReturnCode(TInt aErr) |
|
45 { |
|
46 iCurrRetCode = aErr; |
|
47 } |
|
48 |
|
49 TInt CLbtContainerAOOperation::GetCurrentReturnCode() |
|
50 { |
|
51 return iCurrRetCode; |
|
52 } |
|
53 |
|
54 void CLbtContainerAOOperation::SetOpCode(TInt aOpCode) |
|
55 { |
|
56 iOpCode = aOpCode; |
|
57 } |
|
58 |
|
59 TInt CLbtContainerAOOperation::GetOpCode() |
|
60 { |
|
61 return iOpCode; |
|
62 } |
|
63 |
|
64 CLbtContainerAOOperation::CLbtContainerAOOperation() |
|
65 { |
|
66 |
|
67 } |
|
68 |
|
69 //end of file |
|
70 |