]> sigrok.org Git - pulseview.git/blobdiff - pv/data/decoder.h
Added missing includes and defintions
[pulseview.git] / pv / data / decoder.h
index 4cae427ea95813e842be6aaa25fb93641ee0de1d..93d8fa6a89fb8dae531e48d9f01e0f7c5d4526d7 100644 (file)
 
 #include <QObject>
 
+#include <glib.h>
+
 struct srd_decoder;
 struct srd_decoder_inst;
 struct srd_probe;
+struct srd_proto_data;
+struct srd_session;
 
 namespace pv {
 
@@ -61,7 +65,8 @@ private:
 public:
        Decoder(const srd_decoder *const decoder,
                std::map<const srd_probe*,
-                       boost::shared_ptr<pv::view::Signal> > probes);
+                       boost::shared_ptr<pv::view::Signal> > probes,
+               GHashTable *options);
 
        virtual ~Decoder();
 
@@ -82,11 +87,16 @@ private:
        static void annotation_callback(srd_proto_data *pdata,
                void *decoder);
 
+signals:
+       void new_decode_data();
+
 private:
        const srd_decoder *const _decoder;
        std::map<const srd_probe*, boost::shared_ptr<view::Signal> >
                _probes;
+       GHashTable *_options;
 
+       srd_session *_session;
        srd_decoder_inst *_decoder_inst;
 
        mutable boost::mutex _annotations_mutex;