bintools/rcomp/inc/RCSTACK.H
author timothy.murphy@nokia.com
Wed, 28 Apr 2010 01:01:42 +0100
branchfix
changeset 534 3b10c85868b1
parent 0 044383f39525
permissions -rw-r--r--
fix resource deps: generate more cleanly - no targets if there are no prereqs. no empty lines. fix resource copy performance: remove debug fix filters: behave if someone puts 2 identically named filters into the plugin dir by mistake.

/*
* 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();
	};