]> 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 96f0d1fe7e63afe40bd8a23f8124eae698ab413d..9ba8f2c3d6e1a70ed761f88ea57d27dfff9d38a8 100644 (file)
  * 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>
 
 #include "logic.hpp"
-#include "logicsnapshot.hpp"
+#include "logicsegment.hpp"
 
 using std::deque;
 using std::max;
@@ -38,37 +37,37 @@ 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_;
 }
 
-void Logic::push_snapshot(
-       shared_ptr<LogicSnapshot> &snapshot)
+void Logic::push_segment(
+       shared_ptr<LogicSegment> &segment)
 {
-       snapshots_.push_front(snapshot);
+       segments_.push_front(segment);
 }
 
-const deque< shared_ptr<LogicSnapshot> >& Logic::logic_snapshots() const
+const deque< shared_ptr<LogicSegment> >& Logic::logic_segments() const
 {
-       return snapshots_;
+       return segments_;
 }
 
-vector< shared_ptr<Snapshot> > Logic::snapshots() const
+vector< shared_ptr<Segment> > Logic::segments() const
 {
-       return vector< shared_ptr<Snapshot> >(
-               snapshots_.begin(), snapshots_.end());
+       return vector< shared_ptr<Segment> >(
+               segments_.begin(), segments_.end());
 }
 
 void Logic::clear()
 {
-       snapshots_.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<LogicSnapshot> s : snapshots_) {
+       for (std::shared_ptr<LogicSegment> s : segments_) {
                assert(s);
                l = max(l, s->get_sample_count());
        }