]> sigrok.org Git - pulseview.git/commitdiff
Fixed missing includes and formward declarations hidden by cotire.
authorJoel Holdsworth <redacted>
Sun, 12 Jan 2014 20:39:21 +0000 (20:39 +0000)
committerJoel Holdsworth <redacted>
Sun, 12 Jan 2014 20:47:41 +0000 (20:47 +0000)
pv/dialogs/storeprogress.cpp
pv/popups/probes.cpp
pv/popups/probes.h
pv/sigsession.h

index e0f670d325d7e71bee51ad2c36db1cb78d0e415e..7853173f7d0507e7af029ff609391fa5a6b8206d 100644 (file)
@@ -20,6 +20,8 @@
 
 #include "storeprogress.h"
 
+#include <QMessageBox>
+
 namespace pv {
 namespace dialogs {
 
index fa0d488de35a3b7c55b64b3fed91efe38faccdc4..daad812b76ef48a27a4ab8ad6531088833d94579 100644 (file)
 
 #include <map>
 
+#include <boost/foreach.hpp>
+
+#include <QCheckBox>
 #include <QFormLayout>
 #include <QGridLayout>
+#include <QLabel>
 
 #include "probes.h"
 
index 0dc324a00ae6071c130619b8b789c49b39df8728..3760f4200835791afe93a8322c99325a6079ee26 100644 (file)
 #ifndef PULSEVIEW_PV_POPUPS_PROBES_H
 #define PULSEVIEW_PV_POPUPS_PROBES_H
 
+#include <map>
 #include <vector>
 
+#include <boost/shared_ptr.hpp>
+
 #include <QFormLayout>
 #include <QHBoxLayout>
 #include <QPushButton>
+#include <QSignalMapper>
 
 #include <pv/widgets/popup.h>
 
+struct sr_probe_group;
+
 class QCheckBox;
 class QGridLayout;
 
index 5b4144a7cbb9f026378fef3427a0de96d895c585..159724fb5b9c040870a4e678271abf945b7b6204 100644 (file)
@@ -26,6 +26,7 @@
 #include <boost/thread.hpp>
 
 #include <map>
+#include <set>
 #include <string>
 #include <vector>