X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=pv%2Fdata%2Fsignaldata.hpp;h=f8ae97282cd8d244df0e9cf8ae9e163361873219;hb=5e6967cb2bcacbfb9e5b627becb6752621949998;hp=515897711524bcbf4aa43ec8b4b9dc69eead2865;hpb=ff008de665c7990d5f3408f918ff090d8e6c60b2;p=pulseview.git diff --git a/pv/data/signaldata.hpp b/pv/data/signaldata.hpp index 51589771..f8ae9728 100644 --- a/pv/data/signaldata.hpp +++ b/pv/data/signaldata.hpp @@ -14,12 +14,11 @@ * 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 . */ -#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,23 +27,23 @@ namespace pv { namespace data { -class Snapshot; +class Segment; class SignalData { public: - SignalData(); + SignalData() = default; virtual ~SignalData() {} public: - 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; + virtual uint64_t max_sample_count() const = 0; }; } // namespace data } // namespace pv -#endif // PULSEVIEW_PV_DATA_SIGNALDATA_H +#endif // PULSEVIEW_PV_DATA_SIGNALDATA_HPP