X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fdata%2Flogic.cpp;h=9ba8f2c3d6e1a70ed761f88ea57d27dfff9d38a8;hp=fe29aea4f0175ba1f9878560ebb3ef4cad66eb8c;hb=efdec55aec1a137460fa362a381ed1904182bfed;hpb=f3d66e52ed6b454ea7a0662d5e6367e230116a2b diff --git a/pv/data/logic.cpp b/pv/data/logic.cpp index fe29aea4..9ba8f2c3 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_; } @@ -65,7 +64,7 @@ void Logic::clear() segments_.clear(); } -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_) {