| 1 | #include "decoder.h" |
| 2 | |
| 3 | Decoder::Decoder(QObject *object, const QList<Protocal *> &listProtocals, |
| 4 | const ENDIANESS &endianess) : |
| 5 | QObject (object), |
| 6 | listProtocals(listProtocals), |
| 7 | endianess(endianess) |
| 8 | { |
| 9 | |
| 10 | } |
| 11 | |
| 12 | Decoder::~Decoder() |
| 13 | { |
nothing calls this directly
no outgoing calls
no test coverage detected