| 15 | namespace observer { |
| 16 | |
| 17 | Notification* GetNotification(const std::shared_ptr<NotifyCell>& notify_cell) { |
| 18 | return new NotificationImpl(notify_cell); |
| 19 | } |
| 20 | |
| 21 | NotificationImpl::NotificationImpl(const std::shared_ptr<NotifyCell>& notify_cell) |
| 22 | : notify_cell_(notify_cell), |
no outgoing calls