]> sigrok.org Git - pulseview.git/blobdiff - pv/data/logic.cpp
license: remove FSF postal address from boiler plate license text
[pulseview.git] / pv / data / logic.cpp
index fe29aea4f0175ba1f9878560ebb3ef4cad66eb8c..9ba8f2c3d6e1a70ed761f88ea57d27dfff9d38a8 100644 (file)
@@ -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 <http://www.gnu.org/licenses/>.
  */
 
 #include <cassert>
@@ -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<LogicSegment> s : segments_) {