]> sigrok.org Git - pulseview.git/blame - pv/data/analog.hpp
Prefer std::make_shared().
[pulseview.git] / pv / data / analog.hpp
CommitLineData
aba1dd16
JH
1/*
2 * This file is part of the PulseView project.
3 *
4 * Copyright (C) 2012 Joel Holdsworth <joel@airwebreathe.org.uk>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
efdec55a 17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
aba1dd16
JH
18 */
19
7a01bd36
JH
20#ifndef PULSEVIEW_PV_DATA_ANALOG_HPP
21#define PULSEVIEW_PV_DATA_ANALOG_HPP
aba1dd16 22
2acdb232 23#include "signaldata.hpp"
aba1dd16 24
aba1dd16 25#include <deque>
f9abf97e 26#include <memory>
aba1dd16 27
7db61e77
SA
28#include <QObject>
29
aba1dd16 30namespace pv {
1b1ec774 31namespace data {
aba1dd16 32
f3d66e52 33class AnalogSegment;
aba1dd16 34
7db61e77 35class Analog : public QObject, public SignalData
aba1dd16 36{
7db61e77
SA
37 Q_OBJECT
38
aba1dd16 39public:
b087ba7f 40 Analog();
aba1dd16 41
f3d66e52
JH
42 void push_segment(
43 std::shared_ptr<AnalogSegment> &segment);
aba1dd16 44
f3d66e52
JH
45 const std::deque< std::shared_ptr<AnalogSegment> >&
46 analog_segments() const;
aba1dd16 47
f3d66e52 48 std::vector< std::shared_ptr<Segment> > segments() const;
99503171 49
caabb84c 50 void clear();
b087ba7f 51
e45b13b5 52 uint64_t max_sample_count() const;
a007f5ad 53
7db61e77
SA
54 void notify_samples_added(QObject* segment, uint64_t start_sample,
55 uint64_t end_sample);
56
57Q_SIGNALS:
58 void samples_cleared();
59
60 void samples_added(QObject* segment, uint64_t start_sample,
61 uint64_t end_sample);
62
aba1dd16 63private:
f3d66e52 64 std::deque< std::shared_ptr<AnalogSegment> > segments_;
aba1dd16
JH
65};
66
1b1ec774 67} // namespace data
aba1dd16
JH
68} // namespace pv
69
7a01bd36 70#endif // PULSEVIEW_PV_DATA_ANALOG_HPP