X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=pv%2Fdata%2Fanalog.cpp;h=1a2449891d9d8b86922c6b6efb6350d8b14db70d;hb=067bb62415847791709f4c3cad8bb252a63f45f8;hp=ca2659b175815aa02e05711f4d22b5724bf768bd;hpb=e45b13b536666034c9b6fe52a9321d749dae3c02;p=pulseview.git diff --git a/pv/data/analog.cpp b/pv/data/analog.cpp index ca2659b1..1a244989 100644 --- a/pv/data/analog.cpp +++ b/pv/data/analog.cpp @@ -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 . */ #include @@ -55,6 +54,8 @@ vector< shared_ptr > Analog::segments() const void Analog::clear() { segments_.clear(); + + samples_cleared(); } uint64_t Analog::max_sample_count() const @@ -67,5 +68,11 @@ uint64_t Analog::max_sample_count() const return l; } +void Analog::notify_samples_added(QObject* segment, uint64_t start_sample, + uint64_t end_sample) +{ + samples_added(segment, start_sample, end_sample); +} + } // namespace data } // namespace pv