// EIKALERT.H
//
// Copyright (c) 1997-1999 Symbian Ltd.  All rights reserved.
//

#if !defined(__EIKALERT_H__)
#define __EIKALERT_H__

#if !defined(__EIKDIALG_H__)
#include <eikdialg.h>
#endif

class CEikAlert : public CEikDialog
	{
public:
	void ConstructL();
	void RunAlert(const TDesC& aMsg1,const TDesC& aMsg2);
private:
	void PreLayoutDynInitL();
protected:
	const TDesC* iMsg1;
	const TDesC* iMsg2;
	};

#endif
