|
1 /* |
|
2 * Copyright (c) 2002-2007 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: Provides table creation for databases. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 // INCLUDE FILES |
|
20 #include "crcsecreatetable.h" |
|
21 |
|
22 // ============================ MEMBER FUNCTIONS =============================== |
|
23 |
|
24 // ----------------------------------------------------------------------------- |
|
25 // CRCSECreateTable::CRCSECreateTable |
|
26 // C++ default constructor can NOT contain any code, that |
|
27 // might leave. |
|
28 // ----------------------------------------------------------------------------- |
|
29 // |
|
30 CRCSECreateTable::CRCSECreateTable() |
|
31 { |
|
32 } |
|
33 |
|
34 // Destructor |
|
35 CRCSECreateTable::~CRCSECreateTable() |
|
36 { |
|
37 } |
|
38 |
|
39 // ----------------------------------------------------------------------------- |
|
40 // CRCSECreateTable::CreateProfileTableL |
|
41 // Creates a table to database, where the profiles are stored. |
|
42 // (other items were commented in a header). |
|
43 // ----------------------------------------------------------------------------- |
|
44 // |
|
45 void CRCSECreateTable::CreateProfileTableL() |
|
46 { |
|
47 User::Leave( KErrNotSupported ); |
|
48 } |
|
49 |
|
50 // ----------------------------------------------------------------------------- |
|
51 // CRCSECreateTable::CreateAudioCodecTableL |
|
52 // Creates a table to database, where the Audio Codecs are stored. |
|
53 // (other items were commented in a header). |
|
54 // ----------------------------------------------------------------------------- |
|
55 // |
|
56 void CRCSECreateTable::CreateAudioCodecTableL() |
|
57 { |
|
58 User::Leave( KErrNotSupported ); |
|
59 } |
|
60 |
|
61 // ----------------------------------------------------------------------------- |
|
62 // CRCSECreateTable::CreateSIPProfileTableL |
|
63 // Creates a table to database, where the SIP profiles are stored. |
|
64 // (other items were commented in a header). |
|
65 // ----------------------------------------------------------------------------- |
|
66 // |
|
67 void CRCSECreateTable::CreateSIPSettingTableL() |
|
68 { |
|
69 User::Leave( KErrNotSupported ); |
|
70 } |
|
71 |
|
72 // ----------------------------------------------------------------------------- |
|
73 // CRCSECreateTable::CreateSCCPSettingTableL |
|
74 // Creates a table to database, where the SCCP settings are stored. |
|
75 // (other items were commented in a header). |
|
76 // ----------------------------------------------------------------------------- |
|
77 // |
|
78 void CRCSECreateTable::CreateSCCPSettingTableL() |
|
79 { |
|
80 User::Leave( KErrNotSupported ); |
|
81 } |
|
82 |
|
83 // ----------------------------------------------------------------------------- |
|
84 // CRCSECreateTable::AddColumnToTableL |
|
85 // Adds column to table |
|
86 // (other items were commented in a header). |
|
87 // ----------------------------------------------------------------------------- |
|
88 // |
|
89 void CRCSECreateTable::AddColumnToTableL( |
|
90 CDbColSet& /*aTable*/, |
|
91 const TDesC& /*aColumnName*/, |
|
92 TDbColType /*aColumnType*/, |
|
93 TInt /*aMaxLengthOfColumn*/ ) |
|
94 { |
|
95 User::Leave( KErrNotSupported ); |
|
96 } |
|
97 |
|
98 // End of File |