X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fdialogs%2Fstoreprogress.hpp;h=c42566289f83e5e7ee4656a4f6f94b87e6c32f3a;hp=19aef14a0e5bcb504813ccee9134b434ec73a217;hb=72486b789078f024e4f3404f81118c03b03e2b70;hpb=e93f553816d1938ab1917dff497a36acec4257e3 diff --git a/pv/dialogs/storeprogress.hpp b/pv/dialogs/storeprogress.hpp index 19aef14a..c4256628 100644 --- a/pv/dialogs/storeprogress.hpp +++ b/pv/dialogs/storeprogress.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_SAVEPROGRESS_HPP @@ -28,6 +27,11 @@ #include +using std::map; +using std::pair; +using std::shared_ptr; +using std::string; + namespace pv { class Session; @@ -40,9 +44,10 @@ class StoreProgress : public QProgressDialog public: StoreProgress(const QString &file_name, - const std::shared_ptr output_format, - const std::map &options, - const Session &session, QWidget *parent = 0); + const shared_ptr output_format, + const map &options, + const pair sample_range, + const Session &session, QWidget *parent = nullptr); virtual ~StoreProgress(); @@ -60,7 +65,7 @@ private: pv::StoreSession session_; }; -} // dialogs -} // pv +} // namespace dialogs +} // namespace pv #endif // PULSEVIEW_PV_DIALOGS_SAVEPROGRESS_HPP