m2.mbcp/src/messagecell_ab.h
2006-02-05 17:43:00 +00:00

22 lines
266 B
C++

#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