bintools/rcomp/inc/RCSTACK.H
author timothy.murphy@nokia.com
Wed, 24 Feb 2010 13:56:07 +0000
branchfix
changeset 256 ac7e607c7d30
parent 0 044383f39525
permissions -rw-r--r--
SF Bug 2000 - tidy up copyright dates

/*
* Copyright (c) 1997-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: 
*
*/


#include "STACK.H"   
#include "RESOURCE.H"
#include "STRUCTST.H"

class ResourceItemArrayStack : public Stack
	{
public:
	ResourceItemArrayStack();
    ~ResourceItemArrayStack();
	ResourceItemArray* Pop();
	void Push(ResourceItemArray* aNewItem);
	ResourceItemArray* Peek();
	};

class StructResourceItemStack : public Stack
	{
public:
	StructResourceItemStack();
	~StructResourceItemStack();
	ResourceItem* Pop();
	void Push(ResourceItem* aNewItem);
	ResourceItem* Peek();
	};