X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=pv%2Fdevices%2Finputfile.hpp;h=9b9aee88dcbad288f12642397a6b6921d9e83a29;hb=812c0e3592e51946947b55c54b906bf4a0cb30e9;hp=55688fd453394f4bd00980a75456fbc76b26f918;hpb=5237f0c50352b523c6a0c3d7f931081ecdbdecaa;p=pulseview.git diff --git a/pv/devices/inputfile.hpp b/pv/devices/inputfile.hpp index 55688fd4..9b9aee88 100644 --- a/pv/devices/inputfile.hpp +++ b/pv/devices/inputfile.hpp @@ -25,12 +25,12 @@ #include -#include "device.hpp" +#include "file.hpp" namespace pv { namespace devices { -class InputFile final : public Device +class InputFile final : public File { private: static const std::streamsize BufferSize; @@ -41,7 +41,9 @@ public: std::shared_ptr format, const std::map &options); - void create(); + void open(); + + void close(); void start(); @@ -52,7 +54,6 @@ public: private: const std::shared_ptr context_; const std::shared_ptr input_; - const std::string file_name_; std::atomic interrupt_; };