23 lines
304 B
C++
23 lines
304 B
C++
#ifndef _MESSAGE_CELL_CB
|
|
#define _MESSAGE_CELL_CB
|
|
|
|
#include "message.h"
|
|
|
|
class MessageCellCb {
|
|
public:
|
|
typedef enum {
|
|
TYPE_UNDEF,
|
|
TYPE_TEMPORARY,
|
|
TYPE_DEFINITIVE
|
|
} Type;
|
|
|
|
Message * message;
|
|
MessageCellCb::Type type;
|
|
TimeStamp * maximum;
|
|
short count;
|
|
|
|
MessageCellCb();
|
|
};
|
|
|
|
#endif
|
|
|