X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=android%2Fassetreader.cpp;h=71aafae5c46d784de3451f164b26f0775cc1beff;hp=f14e7b65117933b5a153c0cf704e2af5dad191fb;hb=ebe0a19686181a2ca873219fce38217856b5d82c;hpb=059599e8fd59e4439cc1b29ab92f79abcf2487ea diff --git a/android/assetreader.cpp b/android/assetreader.cpp index f14e7b65..71aafae5 100644 --- a/android/assetreader.cpp +++ b/android/assetreader.cpp @@ -18,18 +18,21 @@ */ #include "assetreader.hpp" -#include + #include + #include #include #include +#include + using namespace pv; -AndroidAssetReader::~AndroidAssetReader() -{} +using std::string; +using std::unique_ptr; -void AndroidAssetReader::open(struct sr_resource *res, std::string name) +void AndroidAssetReader::open(struct sr_resource *res, string name) { if (res->type == SR_RESOURCE_FIRMWARE) { auto path = QStandardPaths::locate(QStandardPaths::GenericDataLocation, @@ -37,7 +40,7 @@ void AndroidAssetReader::open(struct sr_resource *res, std::string name) if (path.isEmpty()) path = QString::fromStdString("assets:/sigrok-firmware/" + name); - std::unique_ptr file {new QFile{path}}; + unique_ptr file {new QFile{path}}; if (!file->open(QIODevice::ReadOnly)) throw sigrok::Error{SR_ERR}; @@ -60,7 +63,7 @@ void AndroidAssetReader::close(struct sr_resource *res) qCritical("AndroidAssetReader: Invalid handle"); throw sigrok::Error{SR_ERR_ARG}; } - const std::unique_ptr file {static_cast(res->handle)}; + const unique_ptr file {static_cast(res->handle)}; res->handle = nullptr; file->close();