X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fdata%2Fsignaldata.hpp;h=11768f69beab1e96d05fdcf02f7cd9a5f03eb2e9;hp=7d67add14d9caf1027c9da05c06dbb49be16c781;hb=7a01bd3654ed046216308fa64edfd79be7cd525f;hpb=7f4038d6abbe86e8a8c511df188293a704064167 diff --git a/pv/data/signaldata.hpp b/pv/data/signaldata.hpp index 7d67add1..11768f69 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,20 +37,14 @@ public: virtual ~SignalData() {} public: - double samplerate() const; - void set_samplerate(double samplerate); - - 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 samplerate_; }; } // namespace data } // namespace pv -#endif // PULSEVIEW_PV_DATA_SIGNALDATA_H +#endif // PULSEVIEW_PV_DATA_SIGNALDATA_HPP