diff -r 000000000000 -r 5a93021fdf25 dbcreator/commsdatcreator/Inc/cdcwlantables.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/dbcreator/commsdatcreator/Inc/cdcwlantables.h Thu Dec 17 08:55:21 2009 +0200 @@ -0,0 +1,106 @@ +/* +* Copyright (c) 2004 Nokia Corporation and/or its subsidiary(-ies). +* All rights reserved. +* This component and the accompanying materials are made available +* under the terms of "Eclipse Public License v1.0" +* which accompanies this distribution, and is available +* at the URL "http://www.eclipse.org/legal/epl-v10.html". +* +* Initial Contributors: +* Nokia Corporation - initial contribution. +* +* Contributors: +* +* Description: Declaration of the class CWlanTables. +* +*/ + + + + +#ifndef WLANTABLESHANDLER_H +#define WLANTABLESHANDLER_H + + +// INCLUDES +#include +#include +#include +#include + +using namespace CommsDat; + +// FORWARD DECLARATIONS + +// CONSTANTS + +// CLASS DECLARATION + +/** +* CWlanTables +* Capable of checking the existence of certain WLAN specific +* tables and - if necessry create them. +*/ +class CWlanTables : public CBase + { + public: + + /** + * Static constructor + */ + static CWlanTables* NewL(); + + /** + * Destructor + */ + virtual ~CWlanTables(); + + /** + * Checks if WLAN tables exist. Creates them if not. + */ + void CheckAndCreateTablesL(); + + + private: + + /** + * C++ default constructor. + */ + CWlanTables(); + + /** + * By default Symbian second phase constructor is private. + */ + void ConstructL(); + + /** + * Check if WLAN Service Table exists in CommsDat; create if not. + */ + void CreateWlanServiceTableL(); + + /** + * Check if WLAN Device Table exists in CommsDat; create if not. + */ + void CreateWlanDeviceSettingsTableL(); + + /** + * Check if WLAN Secondary SSID Table exists in CommsDat; create if not. + */ + void CreateWlanSecSSIDTableL(); + + /** + * Check if WLAN bearer record exists in LANBearer table in CommsDat; create if not. + */ + void CreateWlanBearerRecordL(); + + + + private: // Data + + //@var session - Owned + CMDBSession* iSession; + }; + +#endif // WLANTABLESHANDLER_H + +// End of File.