contentstorage/casrv/cawidgetscanner/inc/cawidgetscannerplugin.h
changeset 60 f62f87b200ec
child 66 32469d7d46ff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/contentstorage/casrv/cawidgetscanner/inc/cawidgetscannerplugin.h	Fri Mar 19 09:35:23 2010 +0200
@@ -0,0 +1,103 @@
+/*
+* Copyright (c) 2007 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:  Ecom plugin
+ *
+*/
+
+
+#ifndef C_CAWIDGETSCANNERPLUGIN_H
+#define C_CAWIDGETSCANNERPLUGIN_H
+
+#include <casrvplugin.h>
+#include <f32file.h>
+#include "cawidgetdescription.h"
+#include "cawidgetmmcwatcher.h"
+
+class TPluginParams;
+class CCaWidgetScannerParser;
+class CCaWidgetScannerInstallNotifier;
+class CCaWidgetStorageHandler;
+
+class CCaWidgetScannerPlugin : public CCaSrvPlugin, MWidgetMmcWatcherCallback
+    {
+    
+public:
+    // Constructors and destructor
+
+    /**
+     * Two-phased constructor.
+     * @param aStorage instance of AS storage DB
+     */
+    static CCaWidgetScannerPlugin* NewL( TPluginParams* aPluginParams );
+    static CCaWidgetScannerPlugin* NewLC( TPluginParams* aPluginParams );
+    /**
+     * C++ destructor
+     */
+    ~CCaWidgetScannerPlugin();
+    
+    /**
+     * SynchronizeL
+     */
+    void SynchronizeL();
+
+private:
+//from MWidgetMmcWatcherCallback
+    
+    /**
+     * MmcChangeL is called when the MMC is removed or inserted.
+     */
+    void MmcChangeL();
+    
+private:
+
+    /**
+     * C++ default constructor.
+     */
+    CCaWidgetScannerPlugin( );
+
+    /**
+     * By default Symbian 2nd phase constructor is private.
+     */
+    void ConstructL( TPluginParams* aPluginParams );
+
+private:
+   
+    /**
+     * File session. Own
+     */
+    RFs iFs;
+
+    /**
+     * Sis installation notifier. Own
+     */
+    CCaWidgetScannerInstallNotifier* iInstallNotifier;
+
+    /**
+     * Pointer to a parser object. Own
+     */
+    CCaWidgetScannerParser* iParser;
+
+    /**
+     * Content Storage Handler. Own.
+     */
+    CCaWidgetStorageHandler* iStorageHandler;
+    
+    /**
+     * Mmc watcher. Own.
+     */
+    CCaWidgetMmcWatcher* iMmcWatcher;
+    
+    };
+
+#endif      // C_CAWIDGETSCANNERPLUGIN_H