| 108 | } |
| 109 | |
| 110 | InviteNotification* InviteNotification::create(const msg::InvitedMessage& msg) { |
| 111 | auto ret = new InviteNotification; |
| 112 | if (ret->init(msg)) { |
| 113 | ret->autorelease(); |
| 114 | return ret; |
| 115 | } |
| 116 | |
| 117 | delete ret; |
| 118 | return nullptr; |
| 119 | } |
| 120 | |
| 121 | } |