| 32 | namespace view { |
| 33 | |
| 34 | Signal::Signal(sr_channel *probe) : |
| 35 | Trace(probe->name, probe->index, probe->type), |
| 36 | _probe(probe) |
| 37 | { |
| 38 | session = AppControl::Instance()->GetSession(); |
| 39 | } |
| 40 | |
| 41 | Signal::Signal(const Signal &s, sr_channel *probe) : |
| 42 | Trace((const Trace &)s), |
nothing calls this directly
no test coverage detected