equal
deleted
inserted
replaced
|
1 // Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies). |
|
2 // All rights reserved. |
|
3 // This component and the accompanying materials are made available |
|
4 // under the terms of "Eclipse Public License v1.0" |
|
5 // which accompanies this distribution, and is available |
|
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
7 // |
|
8 // Initial Contributors: |
|
9 // Nokia Corporation - initial contribution. |
|
10 // |
|
11 // Contributors: |
|
12 // |
|
13 // Description: |
|
14 // |
|
15 |
|
16 #ifdef __COMMDB_ROHID_SUPPORT__ |
|
17 |
|
18 /** |
|
19 @file |
|
20 @internalComponent |
|
21 |
|
22 Implementation of CED extended processing stubs. |
|
23 */ |
|
24 |
|
25 #include <database.h> |
|
26 |
|
27 |
|
28 /** |
|
29 Stub: Does nothing |
|
30 |
|
31 @return EFalse always |
|
32 */ |
|
33 TBool DBAccess::ExtendedProcessingColumn() |
|
34 { |
|
35 return EFalse; |
|
36 } |
|
37 |
|
38 |
|
39 /** |
|
40 Stub: Does nothing |
|
41 |
|
42 @return EFalse always |
|
43 */ |
|
44 TBool DBAccess::DoExtendedColumnProcessing() |
|
45 { |
|
46 // This should be never called. |
|
47 return EFalse; |
|
48 } |
|
49 |
|
50 /* |
|
51 Stub: does nothing |
|
52 |
|
53 @param table Not used |
|
54 @return EFalse always |
|
55 */ |
|
56 TInt DBAccess::ExtendedTableProcessing(TDesC& /* table */) |
|
57 { |
|
58 return EFalse; |
|
59 } |
|
60 |
|
61 |
|
62 /** |
|
63 Stub: does nothing |
|
64 |
|
65 @return KErrNotSupported always. |
|
66 */ |
|
67 TInt DBAccess::DoExtendedTableProcessing() |
|
68 { |
|
69 // This should be never called. |
|
70 return KErrNotSupported; |
|
71 } |
|
72 |
|
73 #endif //__COMMDB_ROHID_SUPPORT__ |