X-Git-Url: http://git.code-monkey.de/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fdevices%2Fsessionfile.hpp;h=1e34ce0577b3185ff5007eb1f20c1a54c0e6df38;hp=a4b69d3e1d1cb8f83402416c858739e5d191c8fb;hb=f4ab4b5c657e5613caba82feaa81a8a400e4f331;hpb=b485408f20c39ae8d05372a5faffe15653c74705 diff --git a/pv/devices/sessionfile.hpp b/pv/devices/sessionfile.hpp index a4b69d3..1e34ce0 100644 --- a/pv/devices/sessionfile.hpp +++ b/pv/devices/sessionfile.hpp @@ -14,17 +14,18 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * along with this program; if not, see . */ #ifndef PULSEVIEW_PV_DEVICES_SESSIONFILE_HPP #define PULSEVIEW_PV_DEVICES_SESSIONFILE_HPP -#include #include -#include "device.hpp" +#include "file.hpp" + +using std::shared_ptr; +using std::string; namespace sigrok { class Context; @@ -33,27 +34,18 @@ 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; + SessionFile(const shared_ptr context, + const string &file_name); - /** - * Builds the display name. It only contains fields as required. - */ - std::string display_name(const DeviceManager&) const; + void open(); - void create(); + void close(); private: - const std::shared_ptr &context_; - const std::string file_name_; + const shared_ptr context_; }; } // namespace devices