X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fdevices%2Fsessionfile.hpp;h=97131676c9c20cb283d6b6a8453812cbc7f7218a;hp=a4b69d3e1d1cb8f83402416c858739e5d191c8fb;hb=474e817a724fdad4db635ba59202283fbcc22ef9;hpb=3084ed4b15663dd717ff656745db305f377ab215 diff --git a/pv/devices/sessionfile.hpp b/pv/devices/sessionfile.hpp index a4b69d3e..97131676 100644 --- a/pv/devices/sessionfile.hpp +++ b/pv/devices/sessionfile.hpp @@ -21,10 +21,9 @@ #ifndef PULSEVIEW_PV_DEVICES_SESSIONFILE_HPP #define PULSEVIEW_PV_DEVICES_SESSIONFILE_HPP -#include #include -#include "device.hpp" +#include "file.hpp" namespace sigrok { class Context; @@ -33,27 +32,16 @@ class Context; namespace pv { namespace devices { -class SessionFile final : public Device +class SessionFile final : public File { public: SessionFile(const std::shared_ptr &context, const std::string &file_name); - /** - * Builds the full name. It only contains all the fields. - */ - std::string full_name() const; - - /** - * Builds the display name. It only contains fields as required. - */ - std::string display_name(const DeviceManager&) const; - void create(); private: const std::shared_ptr &context_; - const std::string file_name_; }; } // namespace devices