| 14 | channel_impl::channel_impl(const std::string& _id, const std::string& _name) : id_(_id), name_(_name), current_filter_id_(1) { } |
| 15 | |
| 16 | std::string channel_impl::get_id() const { |
| 17 | return id_; |
| 18 | } |
| 19 | |
| 20 | std::string channel_impl::get_name() const { |
| 21 | return name_; |
no outgoing calls
no test coverage detected