]> sigrok.org Git - pulseview.git/blame - android/assetreader.hpp
Fix build with -DENABLE_DECODE=n.
[pulseview.git] / android / assetreader.hpp
CommitLineData
dddff2e7
DE
1/*
2 * This file is part of the PulseView project.
3 *
4 * Copyright (C) 2015 Daniel Elstner <daniel.kitta@gmail.com>
5 *
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 */
19
20#ifndef PULSEVIEW_ANDROID_ASSETREADER_HPP
21#define PULSEVIEW_ANDROID_ASSETREADER_HPP
22
23#include <libsigrokcxx/libsigrokcxx.hpp>
24
6f925ba9
UH
25using std::string;
26
dddff2e7
DE
27namespace pv {
28
29class AndroidAssetReader : public sigrok::ResourceReader
30{
31public:
db1aabc1
UH
32 AndroidAssetReader() = default;
33 virtual ~AndroidAssetReader() = default;
dddff2e7
DE
34
35private:
6f925ba9 36 void open(struct sr_resource *res, string name) override;
dddff2e7
DE
37 void close(struct sr_resource *res) override;
38 size_t read(const struct sr_resource *res, void *buf, size_t count) override;
39};
40
41} // namespace pv
42
43#endif // !PULSEVIEW_ANDROID_ASSETREADER_HPP