diff -r d1daf54a55b5 -r 1957042d8c7e filesystemuis/memscaneng/serverinc/msengsisxinfo.h --- a/filesystemuis/memscaneng/serverinc/msengsisxinfo.h Tue Feb 02 00:03:31 2010 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,82 +0,0 @@ -/* -* Copyright (c) 2006 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: Memory scanning engine registry scanning -* -*/ - - -#ifndef MSENGSISXINFO_H -#define MSENGSISXINFO_H - -// CLASS DECLARATION - -/** -* This class represents a sis registry entry. -* -* @since 3.2 -*/ -class CMsengSisxInfo : public CBase - { - public: // Constructors and destructor - - /** - * Constructor. - * - * @param aEntry - Sis registry entry. - * @param aDrive - Drive we are interested in - */ - static CMsengSisxInfo* NewL( Swi::RSisRegistryEntry& aEntry, TDriveNumber aDrive ); - - - /** - * Destructor. - */ - virtual ~CMsengSisxInfo(); - - public: // New functions - - - public: // Functions from base classes - - /** - * From CAppMngrAppInfo, Get location of the application. - * - * @since 3.2 - * @return Application location. - */ - TBool RequestedLocation() const; - - - private: - - /** - * 2nd phase constructor. - * - * @since 3.2 - * @param aEntry - Sis registry entry. - * @param aDrive - Drive scanning is requested for. - */ - void ConstructL( Swi::RSisRegistryEntry& aEntry, TDriveNumber aDrive ); - - private: // Data - HBufC* iFileName; // Own - RPointerArray iFiles; - - TBool iRequestedLocation; - TUid iUid; - }; - -#endif // MSENGSISXINFO_H - -// End of File