Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
422 B

  1. //-------------------------------------------------------------------
  2. // Message class
  3. // It declare interface to send messages to the objects
  4. // If
  5. // Author: Sergey Ivanov
  6. // Log:
  7. // 06/08/99 - implemented
  8. //-------------------------------------------------------------------
  9. // Message class
  10. //
  11. template class<CMessageData Md>
  12. class CMessage
  13. {
  14. CFloat message_id;
  15. CFloat _from;
  16. CFloat _to;
  17. <Md>* message_data;
  18. }