m2.mbcp/src/messagecell_ab.h

22 lines
266 B
C
Raw 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;
MessageCellAb();
};
#endif