Fix clazy warnings regarding range-for references
[pulseview.git] / pv / devices / sessionfile.hpp
index 0fcaa34cb767b3c3066e28f34d577a33aad42106..1e34ce0577b3185ff5007eb1f20c1a54c0e6df38 100644 (file)
  * 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 <http://www.gnu.org/licenses/>.
  */
 
 #ifndef PULSEVIEW_PV_DEVICES_SESSIONFILE_HPP
 #define PULSEVIEW_PV_DEVICES_SESSIONFILE_HPP
 
-#include <string>
 #include <memory>
 
-#include "device.hpp"
+#include "file.hpp"
+
+using std::shared_ptr;
+using std::string;
 
 namespace sigrok {
 class Context;
@@ -33,17 +34,18 @@ class Context;
 namespace pv {
 namespace devices {
 
-class SessionFile final : public Device
+class SessionFile final : public File
 {
 public:
-       SessionFile(const std::shared_ptr<sigrok::Context> &context,
-               const std::string &file_name);
+       SessionFile(const shared_ptr<sigrok::Context> context,
+               const string &file_name);
+
+       void open();
 
-       void create();
+       void close();
 
 private:
-       const std::shared_ptr<sigrok::Context> &context_;
-       const std::string file_name_;
+       const shared_ptr<sigrok::Context> context_;
 };
 
 } // namespace devices