Consistenty use auto-generated namespace comments.
[pulseview.git] / pv / data / decode / rowdata.hpp
index b62711117d0c1a0066ad05570ca6ad7623e3073b..3cb69b3ef1b5ad84ad95581c961c9a4f9694850f 100644 (file)
@@ -24,6 +24,8 @@
 
 #include "annotation.hpp"
 
+using std::vector;
+
 namespace pv {
 namespace data {
 namespace decode {
@@ -40,17 +42,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);
 
 private:
-       std::vector<Annotation> annotations_;
+       vector<Annotation> annotations_;
 };
 
-}
-} // data
-} // pv
+}  // namespace decode
+}  // namespace data
+}  // namespace pv
 
 #endif // PULSEVIEW_PV_DATA_DECODE_ROWDATA_HPP