m2.mbcp/src/messagecell_ab.h

24 lines
304 B
C
Raw Permalink Normal View History

2006-02-05 17:43:00 +00:00
#ifndef _MESSAGE_CELL_AB
#define _MESSAGE_CELL_AB
#include "message.h"
class MessageCellAb {
public:
typedef enum {
TYPE_UNDEF,
TYPE_TEMPORARY,
TYPE_DEFINITIVE
} Type;
Message * message;
MessageCellAb::Type type;
2006-02-05 21:00:58 +00:00
TimeStamp * maximum;
short count;
2006-02-05 17:43:00 +00:00
MessageCellAb();
};
#endif