imgtools/romtools/rombuild/r_mromimage.h
author Mike Kinghan <mikek@symbian.org>
Sat, 27 Nov 2010 17:23:11 +0000
changeset 41 1600211976c3
parent 2 39c28ec933dd
permissions -rwxr-xr-x
1) Add imgtools/romtools to the targets for which exports are performed by fix_tools_exports.pl 2) Windows compatibility fix to list_targets.pl 3) Modify imgtools\romtools\group\BLD.INF so that Windows-only exports are not performed on Linux hosts or vice versa. 4) Windows compatibility fix for imgtools\romtools\rombuild\romnibus.pl

/*
* 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: 
*
*/


#ifndef __R_MROMIMAGE_H__
#define __R_MROMIMAGE_H__

class TRomNode;

/**
class MRomImage
MRofsImage is the interface used to access information held within an Core ROM image.
This interface used to remove the dependency between processing of 
extensions and kernel commands in the obey file

@internalComponent
@released
*/
class MRomImage
{
public:
	virtual TRomNode* RootDirectory() = 0;
	virtual TRomNode* CopyDirectory(TRomNode*& aSourceDirectory)=0;
	virtual TText* RomFileName() = 0;
	virtual TUint32 RomBase() = 0;
	virtual TUint32 RomSize() = 0;
	virtual TVersion Version() = 0;
	virtual TInt64 Time() = 0;
	virtual TUint32 CheckSum() = 0;
	virtual TUint32 DataRunAddress() = 0;
	virtual TUint32 RomAlign() = 0;

	virtual ~MRomImage() { };
};

#endif //__R_MROMIMAGE_H__