X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fdialogs%2Fstoreprogress.hpp;h=48e1239dd033ba648a8caaa2f2280668f7e5cf56;hp=ca14dfb21182b4846707b5f29fbfe9f8b1b24f4b;hb=f54fc97e8c4c20b7a37f10b8fd125407eba17226;hpb=2acdb232d6bb452cfdfaea3ef5218fb4da592329 diff --git a/pv/dialogs/storeprogress.hpp b/pv/dialogs/storeprogress.hpp index ca14dfb2..48e1239d 100644 --- a/pv/dialogs/storeprogress.hpp +++ b/pv/dialogs/storeprogress.hpp @@ -14,12 +14,11 @@ * 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_H -#define PULSEVIEW_PV_DIALOGS_SAVEPROGRESS_H +#ifndef PULSEVIEW_PV_DIALOGS_SAVEPROGRESS_HPP +#define PULSEVIEW_PV_DIALOGS_SAVEPROGRESS_HPP #include #include @@ -28,9 +27,14 @@ #include +using std::map; +using std::pair; +using std::shared_ptr; +using std::string; + namespace pv { -class SigSession; +class Session; namespace dialogs { @@ -39,8 +43,12 @@ class StoreProgress : public QProgressDialog Q_OBJECT public: - StoreProgress(const QString &file_name, const SigSession &session, - QWidget *parent = 0); + StoreProgress(const QString &file_name, + const shared_ptr output_format, + const map &options, + const pair sample_range, + const Session &session, + QWidget *parent = nullptr); virtual ~StoreProgress(); @@ -61,4 +69,4 @@ private: } // dialogs } // pv -#endif // PULSEVIEW_PV_DIALOGS_SAVEPROGRESS_H +#endif // PULSEVIEW_PV_DIALOGS_SAVEPROGRESS_HPP