]> sigrok.org Git - pulseview.git/blobdiff - pv/sigsession.cpp
Renamed pv::data::Decoder to DecoderStack
[pulseview.git] / pv / sigsession.cpp
index 24a059ea8a35f03340461aac434047231087ec05..a6a2875e62657ca7dacc458808f854fc6dfbe88c 100644 (file)
@@ -26,7 +26,7 @@
 
 #include "data/analog.h"
 #include "data/analogsnapshot.h"
-#include "data/decoder.h"
+#include "data/decoderstack.h"
 #include "data/logic.h"
 #include "data/logicsnapshot.h"
 
@@ -208,7 +208,7 @@ bool SigSession::add_decoder(srd_decoder *const dec)
                lock_guard<mutex> lock(_signals_mutex);
 
                // Create the decoder
-               shared_ptr<data::Decoder> decoder(new data::Decoder(dec));
+               shared_ptr<data::DecoderStack> decoder(new data::DecoderStack(dec));
 
                // Auto select the initial probes
                for(const GSList *i = dec->probes; i; i = i->next)