]> sigrok.org Git - pulseview.git/blobdiff - pv/data/signaldata.hpp
Modified header guards to match file names
[pulseview.git] / pv / data / signaldata.hpp
index 515897711524bcbf4aa43ec8b4b9dc69eead2865..11768f69beab1e96d05fdcf02f7cd9a5f03eb2e9 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>
@@ -28,7 +28,7 @@
 namespace pv {
 namespace data {
 
-class Snapshot;
+class Segment;
 
 class SignalData
 {
@@ -37,7 +37,7 @@ public:
        virtual ~SignalData() {}
 
 public:
-       virtual std::vector< std::shared_ptr<Snapshot> > snapshots() const = 0;
+       virtual std::vector< std::shared_ptr<Segment> > segments() const = 0;
 
        virtual void clear() = 0;
 
@@ -47,4 +47,4 @@ public:
 } // namespace data
 } // namespace pv
 
-#endif // PULSEVIEW_PV_DATA_SIGNALDATA_H
+#endif // PULSEVIEW_PV_DATA_SIGNALDATA_HPP