Don't use std:: in the code directly (where possible).
[pulseview.git] / pv / devices / sessionfile.cpp
index 1e8c3acda039f3184e32e701972f16b7f5617bfd..0ba64a9b48cf6ffa4c2e7843bb95cf0a739dea7e 100644 (file)
 
 #include "sessionfile.hpp"
 
+using std::shared_ptr;
+using std::string;
+
 namespace pv {
 namespace devices {
 
-SessionFile::SessionFile(const std::shared_ptr<sigrok::Context> context,
-       const std::string &file_name) :
+SessionFile::SessionFile(const shared_ptr<sigrok::Context> context,
+       const string &file_name) :
        File(file_name),
        context_(context)
 {