Don't use std:: in the code directly (where possible).
[pulseview.git] / pv / dialogs / storeprogress.hpp
index 6bb2292e53641174a996959ea6b894867b6ebf26..b54eb47f10a3a28ff5171ca60d0afe2b3175df50 100644 (file)
  * 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 <http://www.gnu.org/licenses/>.
  */
 
-#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 <memory>
 #include <set>
 
 #include <pv/storesession.hpp>
 
+using std::map;
+using std::pair;
+using std::shared_ptr;
+using std::string;
+
 namespace pv {
 
 class Session;
@@ -40,8 +44,11 @@ class StoreProgress : public QProgressDialog
 
 public:
        StoreProgress(const QString &file_name,
-               const std::shared_ptr<sigrok::OutputFormat> output_format,
-               const Session &session, QWidget *parent = 0);
+               const shared_ptr<sigrok::OutputFormat> output_format,
+               const map<string, Glib::VariantBase> &options,
+               const pair<uint64_t, uint64_t> sample_range,
+               const Session &session,
+               QWidget *parent = 0);
 
        virtual ~StoreProgress();
 
@@ -62,4 +69,4 @@ private:
 } // dialogs
 } // pv
 
-#endif // PULSEVIEW_PV_DIALOGS_SAVEPROGRESS_H
+#endif // PULSEVIEW_PV_DIALOGS_SAVEPROGRESS_HPP