X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fdata%2Fsignaldata.hpp;h=ff30cf1a0eee15a33e2c9ca269f89d5e729755c9;hp=35b1305fcfcf0a4d90b7890f1d829218d0a8c65f;hb=c28fa62bc89656ba3b1b01011a45e941d6c7d42a;hpb=99503171d4f32570829df171521b4b9cbccb0503 diff --git a/pv/data/signaldata.hpp b/pv/data/signaldata.hpp index 35b1305f..ff30cf1a 100644 --- a/pv/data/signaldata.hpp +++ b/pv/data/signaldata.hpp @@ -18,8 +18,8 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef PULSEVIEW_PV_DATA_SIGNALDATA_H -#define PULSEVIEW_PV_DATA_SIGNALDATA_H +#ifndef PULSEVIEW_PV_DATA_SIGNALDATA_HPP +#define PULSEVIEW_PV_DATA_SIGNALDATA_HPP #include #include @@ -28,7 +28,7 @@ namespace pv { namespace data { -class Snapshot; +class Segment; class SignalData { @@ -37,23 +37,14 @@ public: virtual ~SignalData() {} public: - double samplerate() const; - void set_samplerate(double samplerate); - - double get_start_time() const; - - virtual std::vector< std::shared_ptr > snapshots() const = 0; + virtual std::vector< std::shared_ptr > segments() const = 0; virtual void clear() = 0; - virtual uint64_t get_max_sample_count() const = 0; - -protected: - double start_time_; - double samplerate_; + virtual uint64_t max_sample_count() const = 0; }; } // namespace data } // namespace pv -#endif // PULSEVIEW_PV_DATA_SIGNALDATA_H +#endif // PULSEVIEW_PV_DATA_SIGNALDATA_HPP