]> sigrok.org Git - pulseview.git/blobdiff - pv/data/decode/annotation.hpp
Rework decode sample count getters
[pulseview.git] / pv / data / decode / annotation.hpp
index 071f292a8c2fa1a687295590a94b9cb5d67b3bb4..2be8e88d989e4cddacaa18d9b86156ca875c4e95 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/>.
  */
 
 #ifndef PULSEVIEW_PV_VIEW_DECODE_ANNOTATION_HPP
@@ -25,6 +24,8 @@
 
 #include <QString>
 
+using std::vector;
+
 struct srd_proto_data;
 
 namespace pv {
@@ -39,13 +40,13 @@ public:
        uint64_t start_sample() const;
        uint64_t end_sample() const;
        int format() const;
-       const std::vector<QString>& annotations() const;
+       const vector<QString>& annotations() const;
 
 private:
        uint64_t start_sample_;
        uint64_t end_sample_;
        int format_;
-       std::vector<QString> annotations_;
+       vector<QString> annotations_;
 };
 
 } // namespace decode