X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=pv%2Fdata%2Flogic.cpp;h=399c81349c3087ceea417a0e75a610f436e49c59;hb=0402d7a3e425c56321234e4bb546d9b698c6d237;hp=fe29aea4f0175ba1f9878560ebb3ef4cad66eb8c;hpb=f3d66e52ed6b454ea7a0662d5e6367e230116a2b;p=pulseview.git diff --git a/pv/data/logic.cpp b/pv/data/logic.cpp index fe29aea4..399c8134 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 @@ -38,7 +37,7 @@ Logic::Logic(unsigned int num_channels) : assert(num_channels_ > 0); } -int Logic::get_num_channels() const +unsigned int Logic::num_channels() const { return num_channels_; } @@ -63,17 +62,25 @@ vector< shared_ptr > Logic::segments() const void Logic::clear() { segments_.clear(); + + samples_cleared(); } -uint64_t Logic::get_max_sample_count() const +uint64_t Logic::max_sample_count() const { uint64_t l = 0; - for (std::shared_ptr s : segments_) { + for (shared_ptr s : segments_) { assert(s); l = max(l, s->get_sample_count()); } 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