diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2021-05-25 11:07:52 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2021-05-25 11:07:52 +0200 |
commit | 5af379939ac47ad481314476ab0e079a6fa4262f (patch) | |
tree | 60b0088be6d5c956f1292d862c99ffa6d388b148 /src/main.cpp | |
parent | cf2e57e3aa7206af6942e868a965fb52826a321e (diff) | |
download | ODR-EDI2EDI-5af379939ac47ad481314476ab0e079a6fa4262f.tar.gz ODR-EDI2EDI-5af379939ac47ad481314476ab0e079a6fa4262f.tar.bz2 ODR-EDI2EDI-5af379939ac47ad481314476ab0e079a6fa4262f.zip |
Remove unused ReceivedTagItem class
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/main.cpp b/src/main.cpp index c47ea63..f29290f 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -89,18 +89,6 @@ static void usage() /* There is some state inside the parsing of destination arguments, * because several destinations can be given. */ -class ReceivedTagItem : public edi::TagItem { - public: - ReceivedTagItem(const EdiDecoder::ReceivedTagPacket& rt) : m_rt(rt) { } - - virtual std::vector<uint8_t> Assemble() override { - return m_rt.tagpacket; - } - - private: - const EdiDecoder::ReceivedTagPacket& m_rt; -}; - class Main : public EdiDecoder::ETIDataCollector { public: // Tell the ETIWriter what EDI protocol we receive in *ptr. |