1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/********************************************************************
*
*	Created:	17/3/2014   10:37
*
*	File:		fsIMessageListenerGuiComponent.h
*
*	Author:		Mick Waites
*	
*	Purpose:	Base class for all menus/GUIs.
*
*********************************************************************/

#ifndef fsIMessageListenerGuiComponenthdr
#define fsIMessageListenerGuiComponenthdr

#include <map>

#include <fsCore/fsStr.h>

#include "fsIGuiComponent.h"
#include "../../../fsIMessageListener.h"


class fsIMessageListenerGuiComponent : public fsIGuiComponent, public fsIMessageListener
{
public:

protected:

	fsIMessageListenerGuiComponent(fsCEntity* pParent, fsS32 pPriority);
	fsIMessageListenerGuiComponent(fsCEntity* pParent);
	virtual ~fsIMessageListenerGuiComponent();<--- Destructor in derived class

private:
};

#endif