]> sigrok.org Git - pulseview.git/blobdiff - pv/data/signaldata.hpp
Don't use std:: in the code directly (where possible).
[pulseview.git] / pv / data / signaldata.hpp
index f8ae97282cd8d244df0e9cf8ae9e163361873219..034703e19a2df88dec8ba57580fa9f6bfb1507aa 100644 (file)
@@ -24,6 +24,9 @@
 #include <memory>
 #include <vector>
 
+using std::shared_ptr;
+using std::vector;
+
 namespace pv {
 namespace data {
 
@@ -36,7 +39,7 @@ public:
        virtual ~SignalData() {}
 
 public:
-       virtual std::vector< std::shared_ptr<Segment> > segments() const = 0;
+       virtual vector< shared_ptr<Segment> > segments() const = 0;
 
        virtual void clear() = 0;