license: remove FSF postal address from boiler plate license text
[pulseview.git] / pv / storesession.hpp
index 6976b3134da11956cb87d09449ab10f5d6fad128..23e25ec8b4425053601ff0c7ba9c22498c58a321 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
@@ -36,7 +35,6 @@
 #include <QObject>
 
 namespace sigrok {
-class Channel;
 class Output;
 class OutputFormat;
 }
@@ -46,6 +44,7 @@ namespace pv {
 class Session;
 
 namespace data {
+class SignalBase;
 class AnalogSegment;
 class LogicSegment;
 }
@@ -77,7 +76,7 @@ public:
        void cancel();
 
 private:
-       void store_proc(std::vector< std::shared_ptr<sigrok::Channel> > achannel_list,
+       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);