X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=pv%2Fdata%2Fsignaldata.hpp;h=01dd93ab32a0819fe8a8acf2d709cd0a6945131c;hb=784f6c75bf8d878b395b8eb7b5e92fa24d9b32ba;hp=885f843556a70c90f2df6aaebdf0fceeea0ee8e9;hpb=2acdb232d6bb452cfdfaea3ef5218fb4da592329;p=pulseview.git diff --git a/pv/data/signaldata.hpp b/pv/data/signaldata.hpp index 885f8435..01dd93ab 100644 --- a/pv/data/signaldata.hpp +++ b/pv/data/signaldata.hpp @@ -14,40 +14,45 @@ * 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 +#include +#include + +#include + +using std::shared_ptr; +using std::vector; namespace pv { namespace data { -class SignalData +class Segment; + +class SignalData : public QObject { + Q_OBJECT + public: - SignalData(); - virtual ~SignalData() {} + SignalData() = default; + virtual ~SignalData() = default; public: - double samplerate() const; - void set_samplerate(double samplerate); + virtual vector< shared_ptr > segments() const = 0; - double get_start_time() const; + virtual uint32_t get_segment_count() 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