Don't use std:: in the code directly (where possible).
[pulseview.git] / pv / dialogs / storeprogress.hpp
index e968ce4197c3e0e04da7d5d9050f9a511784251d..b54eb47f10a3a28ff5171ca60d0afe2b3175df50 100644 (file)
 
 #include <pv/storesession.hpp>
 
+using std::map;
+using std::pair;
+using std::shared_ptr;
+using std::string;
+
 namespace pv {
 
 class Session;
@@ -39,9 +44,9 @@ class StoreProgress : public QProgressDialog
 
 public:
        StoreProgress(const QString &file_name,
-               const std::shared_ptr<sigrok::OutputFormat> output_format,
-               const std::map<std::string, Glib::VariantBase> &options,
-               const std::pair<uint64_t, uint64_t> sample_range,
+               const shared_ptr<sigrok::OutputFormat> output_format,
+               const map<string, Glib::VariantBase> &options,
+               const pair<uint64_t, uint64_t> sample_range,
                const Session &session,
                QWidget *parent = 0);