Don't use std:: in the code directly (where possible).
[pulseview.git] / pv / dialogs / inputoutputoptions.hpp
index 037f3d41b008ab43ba12eb06a0672d7725e2ab97..5d5ab55a1a967af98494534c949814b49efd6782 100644 (file)
 
 #include <pv/binding/inputoutput.hpp>
 
+using std::map;
+using std::shared_ptr;
+using std::string;
+
 namespace pv {
 namespace dialogs {
 
@@ -45,15 +49,14 @@ public:
         * @param parent the parent widget of the dialog.
         */ 
        InputOutputOptions(const QString &title,
-               const std::map<std::string, std::shared_ptr<sigrok::Option>>
-                       &options,
+               const map<string, shared_ptr<sigrok::Option>> &options,
                QWidget *parent);
 
        /**
         * Gets the map of selected options.
         * @return the options.
         */
-       const std::map<std::string, Glib::VariantBase>& options() const;
+       const map<string, Glib::VariantBase>& options() const;
 
 protected:
        void accept();