Make member variable underscores a suffix instead of a prefix
[pulseview.git] / pv / data / decode / annotation.h
index 9cacafaeaac0c1ea9a92478f1a01b9e2233c78e2..f1e2ef35975bb30d27015c64d08f51a8b25ef103 100644 (file)
@@ -39,17 +39,13 @@ public:
        uint64_t start_sample() const;
        uint64_t end_sample() const;
        int format() const;
-       int row() const;
        const std::vector<QString>& annotations() const;
 
-       void set_row(int row);
-
 private:
-       uint64_t _start_sample;
-       uint64_t _end_sample;
-       int _format;
-       int _row;
-       std::vector<QString> _annotations; 
+       uint64_t start_sample_;
+       uint64_t end_sample_;
+       int format_;
+       std::vector<QString> annotations_;
 };
 
 } // namespace decode