X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fdialogs%2Finputoutputoptions.hpp;h=be6d33080f699a245355ebc92ee7b493aade746d;hp=cde778c0456a76d37e67a076bc88b96db0c3fb09;hb=72486b789078f024e4f3404f81118c03b03e2b70;hpb=e93f553816d1938ab1917dff497a36acec4257e3 diff --git a/pv/dialogs/inputoutputoptions.hpp b/pv/dialogs/inputoutputoptions.hpp index cde778c0..be6d3308 100644 --- a/pv/dialogs/inputoutputoptions.hpp +++ b/pv/dialogs/inputoutputoptions.hpp @@ -14,8 +14,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * along with this program; if not, see . */ #ifndef PULSEVIEW_PV_DIALOGS_INPUTOUTPUTOPTIONS_HPP @@ -28,6 +27,10 @@ #include +using std::map; +using std::shared_ptr; +using std::string; + namespace pv { namespace dialogs { @@ -44,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();