|
System Utilities
C4Application.h
Application::ConstructMessageCalled to construct an application-defined message.Prototype
Parameters
Description
When the Message Manager receives a message with an application-defined type, it calls the ConstructMessage function to construct the appropriate message object. The implementation of the ConstructMessage function should examine the message type passed in the type parameter, construct the corresponding subclass of the Message class, and return a pointer to it. If the message type is not recognized, then ConstructMessage should return nullptr.The Message Manager calls the message object's Message::Decompress function immediately after the object is constructed, so the ConstructMessage function should make no effort to initialize any components of the message object that it constructs.
See Also
Application::ReceiveMessage
Message::HandleMessage
Message
|