]> sigrok.org Git - pulseview.git/blobdiff - pv/storesession.hpp
Build fixes for Qt5 Windows/mingw/MXE support.
[pulseview.git] / pv / storesession.hpp
index 6a081801573491e8a626b9a90107ef68bff90a89..e89b3fd209da4e488ae208cd5d47820e0a085692 100644 (file)
@@ -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 <http://www.gnu.org/licenses/>.
  */
 
 #ifndef PULSEVIEW_PV_STORESESSION_HPP
@@ -45,6 +44,8 @@ namespace pv {
 class Session;
 
 namespace data {
+class SignalBase;
+class AnalogSegment;
 class LogicSegment;
 }
 
@@ -75,11 +76,15 @@ public:
        void cancel();
 
 private:
-       void store_proc(std::shared_ptr<pv::data::LogicSegment> segment);
+       void store_proc(std::vector< std::shared_ptr<data::SignalBase> > achannel_list,
+               std::vector< std::shared_ptr<pv::data::AnalogSegment> > asegment_list,
+               std::shared_ptr<pv::data::LogicSegment> lsegment);
 
 Q_SIGNALS:
        void progress_updated();
 
+       void store_successful();
+
 private:
        const std::string file_name_;
        const std::shared_ptr<sigrok::OutputFormat> output_format_;