X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fdialogs%2Finputoutputoptions.hpp;h=be6d33080f699a245355ebc92ee7b493aade746d;hp=037f3d41b008ab43ba12eb06a0672d7725e2ab97;hb=c063290ac7189bdd15221450f598504f43286b43;hpb=efdec55aec1a137460fa362a381ed1904182bfed diff --git a/pv/dialogs/inputoutputoptions.hpp b/pv/dialogs/inputoutputoptions.hpp index 037f3d41..be6d3308 100644 --- a/pv/dialogs/inputoutputoptions.hpp +++ b/pv/dialogs/inputoutputoptions.hpp @@ -27,6 +27,10 @@ #include +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> - &options, + const map> &options, QWidget *parent); /** * Gets the map of selected options. * @return the options. */ - const std::map& options() const; + const map& options() const; protected: void accept();