diff -r 8e5041d13c84 -r 32469d7d46ff contentstorage/srvinc/cainstallstrategy.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/contentstorage/srvinc/cainstallstrategy.h Mon May 03 12:48:45 2010 +0300 @@ -0,0 +1,168 @@ +/* + * Copyright (c) 2008 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: ?Description + * + */ + +#ifndef CAINSTALLSTRATEGY_H +#define CAINSTALLSTRATEGY_H + +#include "cainstallnotifier.h" +#include +#include + +/** + * Strategy interface. + * + * @since S60 v5.0 + */ +class CNotifierStrategy: public CBase + { +public: + + /** + * Notifies listener with changes in property. + * @param aProperty to read values from. + * @param aListener listener to notify. + */ + virtual void NotifyListenerL( RProperty& aProperty, + MCaInstallListener& aListener ) = 0; + + }; + +/** + * CA Install strategy. + * + * @since S60 v5.0 + */ +NONSHARABLE_CLASS( CCaSwiInstallStrategy ): public CNotifierStrategy + { +public: + + /** + * Creates an instance of CCaInstallStrategy. + * @param aProperty property to handle. + */ + static CCaSwiInstallStrategy* NewL( RProperty& aProperty ); + + /** + * Notifies listener with changes in property. + * @param aProperty to read values from. + * @param aListener listener to notify. + */ + void NotifyListenerL( RProperty& aProperty, + MCaInstallListener& aListener ); + +private: + + /** + * Constructor. + * @param aProperty property to handle. + */ + CCaSwiInstallStrategy( RProperty& aProperty ); + + /** + * Symbian 2nd phase constructor. + */ + void ConstructL(); + + }; + +/** + * CA Java install strategy. + * + * @since S60 v5.0 + */ +NONSHARABLE_CLASS( CCaJavaInstallStrategy ): public CNotifierStrategy + { +public: + + /** + * Creates an instance of CCaInstallStrategy. + * @param aProperty property to handle. + */ + static CCaJavaInstallStrategy* NewL( RProperty& aProperty ); + + /** + * Notifies listener with changes in property. + * @param aProperty to read values from. + * @param aListener listener to notify. + */ + void NotifyListenerL( RProperty& aProperty, + MCaInstallListener& aListener ); + +private: + + /** + * Constructor. + * @param aProperty property to handle. + */ + CCaJavaInstallStrategy( RProperty& aProperty ); + + /** + * Symbian 2nd phase constructor. + */ + void ConstructL(); + + }; + +/** + * CA Unninstal with USIF strategy. + * + * @since S60 v5.0 + */ +NONSHARABLE_CLASS( CCaUsifUninstallStrategy ): public CNotifierStrategy + { +public: + + /** + * Creates an instance of CCaInstallStrategy. + * @param aProperty property to handle. + */ + static CCaUsifUninstallStrategy* NewL( RProperty& aProperty ); + + /** + * Notifies listener with changes in property. + * @param aProperty to read values from. + * @param aListener listener to notify. + */ + void NotifyListenerL( RProperty& aProperty, + MCaInstallListener& aListener ); + +private: + + /** + * Constructor. + * @param aProperty property to handle. + */ + CCaUsifUninstallStrategy( RProperty& aProperty ); + + /** + * Symbian 2nd phase constructor. + */ + void ConstructL(); + +private: + + /** + * Contains uid of application that was started to uninstall. + */ + TInt iAppUid; + + }; + +#endif /* CAINSTALLSTRATEGY_H */ + +// End of File +