]> sigrok.org Git - pulseview.git/blobdiff - pv/dialogs/inputoutputoptions.hpp
DecodeSignal: Re-set decoder metadata after stack termination
[pulseview.git] / pv / dialogs / inputoutputoptions.hpp
index 037f3d41b008ab43ba12eb06a0672d7725e2ab97..be6d33080f699a245355ebc92ee7b493aade746d 100644 (file)
 
 #include <pv/binding/inputoutput.hpp>
 
+using std::map;
+using std::shared_ptr;
+using std::string;
+
 namespace pv {
 namespace dialogs {
 
@@ -43,17 +47,16 @@ public:
         * @param title the title of the dialog.
         * @param options the map of options to use as a template.
         * @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();