X-Git-Url: http://git.code-monkey.de/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fdata%2Fsignaldata.hpp;h=5168fee8e4b58fb6c75dec7afe26364a4709d47a;hp=11768f69beab1e96d05fdcf02f7cd9a5f03eb2e9;hb=0df28cd5a727c5e4ff2c46e3258b76936bc0c33d;hpb=7a01bd3654ed046216308fa64edfd79be7cd525f diff --git a/pv/data/signaldata.hpp b/pv/data/signaldata.hpp index 11768f6..5168fee 100644 --- a/pv/data/signaldata.hpp +++ b/pv/data/signaldata.hpp @@ -14,8 +14,7 @@ * 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_HPP @@ -25,23 +24,34 @@ #include #include +#include + +using std::shared_ptr; +using std::vector; + namespace pv { namespace data { class Segment; -class SignalData +class SignalData : public QObject { + Q_OBJECT + public: - SignalData(); - virtual ~SignalData() {} + SignalData() = default; + virtual ~SignalData() = default; public: - virtual std::vector< std::shared_ptr > segments() const = 0; + virtual vector< shared_ptr > segments() const = 0; + + virtual uint32_t get_segment_count() const = 0; virtual void clear() = 0; - virtual uint64_t get_max_sample_count() const = 0; + virtual uint64_t max_sample_count() const = 0; + + virtual double get_samplerate() const = 0; }; } // namespace data