#if !defined(AFX_MESSAGELIST_H__E99E37E0_139E_420B_867A_7C8D15C1C773__INCLUDED_)
#define AFX_MESSAGELIST_H__E99E37E0_139E_420B_867A_7C8D15C1C773__INCLUDED_

#include "ItemList.h"
#include "Attributes.h"

class MessageList : public ItemList {
public:

     MessageList( debug_t );
     virtual ~MessageList();

     short MessageCount() { return _MessageCount; };

     void dumpMessageList( void );

private: 

     virtual Item *addItem( const char * );

     short _MessageCount;
     Attributes _attributes;

     debug_t debug;

};

#endif
