X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=pv%2Fdata%2Flogic.cpp;h=cd80ac99de13ca54384e9a7013239d68076f7823;hb=7db61e770abd2d1c7eb326a09e35cd4266664c1d;hp=b34635319c934c1618a81bfd0bf961c82044df8b;hpb=e45b13b536666034c9b6fe52a9321d749dae3c02;p=pulseview.git diff --git a/pv/data/logic.cpp b/pv/data/logic.cpp index b346353..cd80ac9 100644 --- a/pv/data/logic.cpp +++ b/pv/data/logic.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 @@ -63,6 +62,8 @@ vector< shared_ptr > Logic::segments() const void Logic::clear() { segments_.clear(); + + samples_cleared(); } uint64_t Logic::max_sample_count() const @@ -75,5 +76,11 @@ uint64_t Logic::max_sample_count() const return l; } +void Logic::notify_samples_added(QObject* segment, uint64_t start_sample, + uint64_t end_sample) +{ + samples_added(segment, start_sample, end_sample); +} + } // namespace data } // namespace pv