X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fdevices%2Fsessionfile.hpp;h=42078ec13d6192616d27af88106be3dcc264c69e;hp=0fcaa34cb767b3c3066e28f34d577a33aad42106;hb=00f6bae935837b38b0d03a5928ba8175d460413f;hpb=da30ecb7e72bd2547e524258efa5ec642988b70b diff --git a/pv/devices/sessionfile.hpp b/pv/devices/sessionfile.hpp index 0fcaa34c..42078ec1 100644 --- a/pv/devices/sessionfile.hpp +++ b/pv/devices/sessionfile.hpp @@ -14,17 +14,15 @@ * 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" namespace sigrok { class Context; @@ -33,17 +31,18 @@ class Context; namespace pv { namespace devices { -class SessionFile final : public Device +class SessionFile final : public File { public: - SessionFile(const std::shared_ptr &context, + SessionFile(const std::shared_ptr context, const std::string &file_name); - void create(); + void open(); + + void close(); private: - const std::shared_ptr &context_; - const std::string file_name_; + const std::shared_ptr context_; }; } // namespace devices