secureswitools/swisistools/source/interpretsislib/interpretsis.h
changeset 0 ba25891c3a9e
child 24 5cc91383ab1e
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/secureswitools/swisistools/source/interpretsislib/interpretsis.h	Thu Dec 17 08:51:10 2009 +0200
@@ -0,0 +1,77 @@
+/*
+* Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
+* All rights reserved.
+* This component and the accompanying materials are made available
+* under the terms of the License "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: 
+*
+*/
+
+
+/**
+ @file 
+ @publishedPartner
+ @released
+*/
+#ifndef __INTERPRETSIS_H__
+#define __INTERPRETSIS_H__
+
+#include <iostream>
+#include <memory>
+
+#include "parameterlist.h"
+#include "rommanager.h"
+#include "configmanager.h"
+#include "sisregistry.h"
+#include "installer.h"
+
+
+class CInterpretSIS
+	{
+public:
+	typedef std::auto_ptr<CParameterList> TParamPtr;
+	typedef std::auto_ptr<RomManager> TRomManagerPtr;
+public:
+	/**
+	 * Constructor
+	 * 
+	 * @param aParamList parameters used for installation.
+	 * This class takes ownership of the instance (of type  
+	 * CParameterList) pointed by aParamList. 
+	 */
+	CInterpretSIS(TParamPtr aParamList);
+	/**
+	 * Cleanup owned resources
+	 */
+	~CInterpretSIS();
+	
+public:
+	/**
+	 * Install the SIS files present specified while creating this class.
+	 */
+	int Install();
+	/**
+	 * Un-install installed applications specified while creating this class.
+	 */
+	void Uninstall();
+	
+private:
+	void ConstructL();
+	
+private:
+	TParamPtr 		iParamList;
+	TRomManagerPtr	iRomManager;
+	ConfigManager*	iConfigManager;
+	SisRegistry*	iSisRegistry;
+	Installer*		iInstaller;
+	};
+
+#endif //__INTERPRETSIS_H__
\ No newline at end of file