]> sigrok.org Git - pulseview.git/blobdiff - pv/data/signaldata.hpp
Use the 'default' keyword where applicable. This patch
[pulseview.git] / pv / data / signaldata.hpp
index 7d67add14d9caf1027c9da05c06dbb49be16c781..4b356100e3642a966526e200db7497166a280355 100644 (file)
@@ -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 <cstdint>
 #include <memory>
 namespace pv {
 namespace data {
 
-class Snapshot;
+class Segment;
 
 class SignalData
 {
 public:
-       SignalData();
+       SignalData() = default;
        virtual ~SignalData() {}
 
 public:
-       double samplerate() const;
-       void set_samplerate(double samplerate);
-
-       virtual std::vector< std::shared_ptr<Snapshot> > snapshots() const = 0;
+       virtual std::vector< std::shared_ptr<Segment> > segments() const = 0;
 
        virtual void clear() = 0;
 
-       virtual uint64_t get_max_sample_count() const = 0;
-
-protected:
-       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