]> sigrok.org Git - pulseview.git/blobdiff - pv/data/decode/rowdata.cpp
rowdata: Use emplace_back() for Annotation objects.
[pulseview.git] / pv / data / decode / rowdata.cpp
index c8d68df6cb317a1bcdefd778bee970bf4b1f0e29..aff4a26b333b68b2672af073c87b8ad5c392d406 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 "rowdata.hpp"
@@ -26,10 +25,6 @@ namespace pv {
 namespace data {
 namespace decode {
 
-RowData::RowData()
-{
-}
-
 uint64_t RowData::get_max_sample() const
 {
        if (annotations_.empty())
@@ -47,11 +42,11 @@ void RowData::get_annotation_subset(
                        dest.push_back(annotation);
 }
 
-void RowData::push_annotation(const Annotation &a)
+void RowData::emplace_annotation(srd_proto_data *pdata)
 {
-       annotations_.push_back(a);
+       annotations_.emplace_back(pdata);
 }
 
-} // decode
-} // data
-} // pv
+}  // namespace decode
+}  // namespace data
+}  // namespace pv