#include <msg.h>
Inheritance diagram for OpMsg:
Public Types | |
enum | OpMsgType { BEGIN, END, BEFORE_UNDO, AFTER_UNDO, BEFORE_REDO, AFTER_REDO } |
Public Member Functions | |
OpMsg (Operation *pOperation, OpMsgType TypeMsg) | |
Public Attributes | |
OpMsgType | MsgType |
Operation * | pOp |
Private Member Functions | |
CC_DECLARE_DYNAMIC (OpMsg) |
Definition at line 142 of file msg.h.
|
Definition at line 147 of file msg.h. 00148 { 00149 BEGIN, // An operation is about to be performed 00150 END, // An operation has successfully ended 00151 BEFORE_UNDO, // Sent prior to the operation being undone 00152 AFTER_UNDO, // Sent after the operation has been undone 00153 BEFORE_REDO, // Sent prior to the operation being redone 00154 AFTER_REDO // Sent after the operation has been redone 00155 };
|
|
Definition at line 160 of file msg.h.
|
|
|
|
|
|
|