| 102 | bool operator == (const Message& _rhs) const {return title == _rhs.title;} |
| 103 | |
| 104 | std::string ToString() const { |
| 105 | XMessage xmsg; |
| 106 | xmsg(TSF"(msg_name:%_, create_time:%_, execute_time:%_)", msg_name, create_time, execute_time); |
| 107 | return xmsg.String(); |
| 108 | } |
| 109 | |
| 110 | MessageTitle_t title; |
| 111 | boost::any body1; |