]> sigrok.org Git - pulseview.git/blobdiff - pv/devices/sessionfile.hpp
Fix #605 by closing current device when another is selected
[pulseview.git] / pv / devices / sessionfile.hpp
index a4b69d3e1d1cb8f83402416c858739e5d191c8fb..9494571440e7765e97c97d5e40145d7333d014e2 100644 (file)
 #ifndef PULSEVIEW_PV_DEVICES_SESSIONFILE_HPP
 #define PULSEVIEW_PV_DEVICES_SESSIONFILE_HPP
 
-#include <string>
 #include <memory>
 
-#include "device.hpp"
+#include "file.hpp"
 
 namespace sigrok {
 class Context;
@@ -33,27 +32,18 @@ class Context;
 namespace pv {
 namespace devices {
 
-class SessionFile final : public Device
+class SessionFile final : public File
 {
 public:
-       SessionFile(const std::shared_ptr<sigrok::Context> &context,
+       SessionFile(const std::shared_ptr<sigrok::Context> context,
                const std::string &file_name);
 
-       /**
-        * Builds the full name. It only contains all the fields.
-        */
-       std::string full_name() const;
+       void open();
 
-       /**
-        * Builds the display name. It only contains fields as required.
-        */
-       std::string display_name(const DeviceManager&) const;
-
-       void create();
+       void close();
 
 private:
-       const std::shared_ptr<sigrok::Context> &context_;
-       const std::string file_name_;
+       const std::shared_ptr<sigrok::Context> context_;
 };
 
 } // namespace devices