X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fdevices%2Finputfile.hpp;h=3efaf795b2ea985c57d69b91e40f3421c107bdfb;hp=588ccdf243e39c87ca52583678249b17cb42167e;hb=efdec55aec1a137460fa362a381ed1904182bfed;hpb=dd3fd4df34d129c83f7f5d80ff1e8b998beca63d diff --git a/pv/devices/inputfile.hpp b/pv/devices/inputfile.hpp index 588ccdf2..3efaf795 100644 --- a/pv/devices/inputfile.hpp +++ b/pv/devices/inputfile.hpp @@ -14,8 +14,7 @@ * 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_DEVICE_INPUTFILE_HPP @@ -41,7 +40,9 @@ public: std::shared_ptr format, const std::map &options); - void create(); + void open(); + + void close(); void start(); @@ -51,8 +52,11 @@ public: private: const std::shared_ptr context_; - const std::shared_ptr input_; + const std::shared_ptr format_; + const std::map options_; + std::shared_ptr input_; + std::ifstream *f; std::atomic interrupt_; };