]> sigrok.org Git - pulseview.git/blame - pv/data/analog.hpp
Free unused segment memory after acquisition
[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
aba1dd16 28namespace pv {
1b1ec774 29namespace data {
aba1dd16 30
f3d66e52 31class AnalogSegment;
aba1dd16 32
1b1ec774 33class Analog : public SignalData
aba1dd16
JH
34{
35public:
b087ba7f 36 Analog();
aba1dd16 37
f3d66e52
JH
38 void push_segment(
39 std::shared_ptr<AnalogSegment> &segment);
aba1dd16 40
f3d66e52
JH
41 const std::deque< std::shared_ptr<AnalogSegment> >&
42 analog_segments() const;
aba1dd16 43
f3d66e52 44 std::vector< std::shared_ptr<Segment> > segments() const;
99503171 45
caabb84c 46 void clear();
b087ba7f 47
e45b13b5 48 uint64_t max_sample_count() const;
a007f5ad 49
aba1dd16 50private:
f3d66e52 51 std::deque< std::shared_ptr<AnalogSegment> > segments_;
aba1dd16
JH
52};
53
1b1ec774 54} // namespace data
aba1dd16
JH
55} // namespace pv
56
7a01bd36 57#endif // PULSEVIEW_PV_DATA_ANALOG_HPP