X-Git-Url: http://git.code-monkey.de/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fdialogs%2Fstoreprogress.hpp;h=b54eb47f10a3a28ff5171ca60d0afe2b3175df50;hp=92634b4247110d1c781d78ccaaa3d188d388914f;hb=6f925ba9d6faf1077b73c5a5808259576081716a;hpb=2b81ae4682ade4109ffa442794de36ceb32045eb diff --git a/pv/dialogs/storeprogress.hpp b/pv/dialogs/storeprogress.hpp index 92634b4..b54eb47 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,6 +27,11 @@ #include +using std::map; +using std::pair; +using std::shared_ptr; +using std::string; + namespace pv { class Session; @@ -39,7 +43,11 @@ class StoreProgress : public QProgressDialog Q_OBJECT public: - StoreProgress(const QString &file_name, const Session &session, + StoreProgress(const QString &file_name, + const shared_ptr output_format, + const map &options, + const pair sample_range, + const Session &session, QWidget *parent = 0); virtual ~StoreProgress(); @@ -61,4 +69,4 @@ private: } // dialogs } // pv -#endif // PULSEVIEW_PV_DIALOGS_SAVEPROGRESS_H +#endif // PULSEVIEW_PV_DIALOGS_SAVEPROGRESS_HPP