#include <units.h>
Inheritance diagram for UnitMsg:
Public Types | |
enum | UnitMsgType { BEFOREDELETE, AFTERDELETE, NEW, CHANGED } |
Public Member Functions | |
UnitMsg (DocUnitList *pDocList, UnitType UType, UnitMsgType TypeMsg) | |
Public Attributes | |
UnitMsgType | MsgType |
DocUnitList * | pDocUnitList |
UnitType | ThisUnitType |
Private Member Functions | |
CC_DECLARE_DYNAMIC (UnitMsg) |
Definition at line 340 of file units.h.
|
Definition at line 345 of file units.h. 00346 { 00347 BEFOREDELETE, // The unit is about to be deleted from the document 00348 AFTERDELETE, // The unit has just been deleted from the document 00349 NEW, // A new unit has just been created 00350 CHANGED // An existing unit has changed definition 00351 };
|
|
Definition at line 357 of file units.h. 00357 : 00358 MsgType(TypeMsg), pDocUnitList(pDocList), ThisUnitType(UType) { }
|
|
|
|
|
|
|
|
|