Don't use std:: in the code directly (where possible).
[pulseview.git] / pv / data / decode / annotation.hpp
index 7e62cea1f6d07cf6c78d9b26ee961599ed15fc19..2be8e88d989e4cddacaa18d9b86156ca875c4e95 100644 (file)
@@ -24,6 +24,8 @@
 
 #include <QString>
 
+using std::vector;
+
 struct srd_proto_data;
 
 namespace pv {
@@ -38,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