messagingfw/biomsgfw/BIFUINC/cbifentry.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Fri, 22 Jan 2010 10:07:48 +0200
changeset 1 d6ae4a564e05
parent 0 8e480a14352b
permissions -rw-r--r--
Revision: 201001 Kit: 201003

// Copyright (c) 2005-2009 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:
//

#ifndef __CBIFENTRY_H__
#define __CBIFENTRY_H__

#include <e32base.h>

class TEntry;

/** 
Encapsulates information about installed BIF files.

@internalTechnology
*/
class CBifEntry : public CBase
	{
public:
	IMPORT_C static CBifEntry* NewLC(const TEntry& aEntry);
	IMPORT_C static CBifEntry* NewL(const TEntry& aEntry);
	virtual ~CBifEntry();

	IMPORT_C TBool operator==(const CBifEntry& aEntry) const; 

private:
	CBifEntry();
	void ConstructL(const TEntry& aEntry);
	
public:
	/** The size of the file in bytes. */
	TInt iSize;

	/** The system time of last modification, in universal time. */
	TTime iModified;
	
	/** The name of the file relative to the owning directory. */
	HBufC* iName;
	};

#endif //__CBIFENTRY_H__