]> sigrok.org Git - pulseview.git/blob - android/assetreader.hpp
INSTALL: Mention the missing glibmm dependency.
[pulseview.git] / android / assetreader.hpp
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
25 namespace pv {
26
27 class AndroidAssetReader : public sigrok::ResourceReader
28 {
29 public:
30         AndroidAssetReader() {}
31         virtual ~AndroidAssetReader();
32
33 private:
34         void open(struct sr_resource *res, std::string name) override;
35         void close(struct sr_resource *res) override;
36         size_t read(const struct sr_resource *res, void *buf, size_t count) override;
37 };
38
39 } // namespace pv
40
41 #endif // !PULSEVIEW_ANDROID_ASSETREADER_HPP