]> sigrok.org Git - pulseview.git/blobdiff - pv/data/decode/rowdata.hpp
Annotation: Use special type for the class, not plain int
[pulseview.git] / pv / data / decode / rowdata.hpp
index 568b1bb0ad554c6806eaf3d21b2b2fd4bafe526f..07cc41bf3eb1f8febf04c06595d8da2f142eb7da 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/>.
  */
 
-#ifndef PULSEVIEW_PV_DATA_DECODE_ROWDATA_H
-#define PULSEVIEW_PV_DATA_DECODE_ROWDATA_H
+#ifndef PULSEVIEW_PV_DATA_DECODE_ROWDATA_HPP
+#define PULSEVIEW_PV_DATA_DECODE_ROWDATA_HPP
 
 #include <vector>
 
+#include <libsigrokdecode/libsigrokdecode.h>
+
 #include "annotation.hpp"
 
+using std::vector;
+
 namespace pv {
 namespace data {
 namespace decode {
@@ -32,7 +35,7 @@ namespace decode {
 class RowData
 {
 public:
-       RowData();
+       RowData() = default;
 
 public:
        uint64_t get_max_sample() const;
@@ -41,17 +44,17 @@ public:
         * Extracts sorted annotations between two period into a vector.
         */
        void get_annotation_subset(
-               std::vector<pv::data::decode::Annotation> &dest,
+               vector<pv::data::decode::Annotation> &dest,
                uint64_t start_sample, uint64_t end_sample) const;
 
-       void push_annotation(const Annotation &a);
+       void emplace_annotation(srd_proto_data *pdata);
 
 private:
-       std::vector<Annotation> annotations_;
+       vector<Annotation> annotations_;
 };
 
-}
-} // data
-} // pv
+}  // namespace decode
+}  // namespace data
+}  // namespace pv
 
-#endif // PULSEVIEW_PV_DATA_DECODE_ROWDATA_H
+#endif // PULSEVIEW_PV_DATA_DECODE_ROWDATA_HPP