]> sigrok.org Git - libsigrokflow.git/blame - include/libsigrokflow/legacy_output.hpp
Avoid "using namespace std" everywhere.
[libsigrokflow.git] / include / libsigrokflow / legacy_output.hpp
CommitLineData
bf71e84f
UH
1/*
2 * This file is part of the libsigrokflow project.
3 *
4 * Copyright (C) 2018 Martin Ling <martin-sigrok@earth.li>
5 * Copyright (C) 2018 Uwe Hermann <uwe@hermann-uwe.de>
6 *
7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
19 */
20
21#ifndef LIBSIGROKFLOW_LEGACY_OUTPUT_HPP
22#define LIBSIGROKFLOW_LEGACY_OUTPUT_HPP
23
24/* Temporary workaround, will be dropped later. */
25#define HAVE_LIBSIGROKCXX 1
26
27#include <gstreamermm.h>
28#ifdef HAVE_LIBSIGROKCXX
29#include <libsigrokcxx/libsigrokcxx.hpp>
30#endif
31#include <libsigrokflow/main.hpp>
32
33namespace Srf
34{
35
f638442b
UH
36using std::map;
37using std::shared_ptr;
38using std::string;
bf71e84f
UH
39
40#ifdef HAVE_LIBSIGROKCXX
41class LegacyOutput :
42 public Sink
43{
44public:
45 /* Create from libsigrok output object. */
46 static Glib::RefPtr<LegacyOutput> create(
47 shared_ptr<sigrok::OutputFormat> libsigrok_output_format,
48 map<string, Glib::VariantBase> options = map<string, Glib::VariantBase>());
49
50 /* Override start. */
51 bool start_vfunc() override;
52
53 /* Override render. */
54 Gst::FlowReturn render_vfunc(const Glib::RefPtr<Gst::Buffer> &buffer) override;
55
56 /* Override stop. */
57 bool stop_vfunc() override;
58
59 /* Gst class init. */
60 static void class_init(Gst::ElementClass<LegacyOutput> *klass);
61
62 /* Register class with plugin. */
63 static bool register_element(Glib::RefPtr<Gst::Plugin> plugin);
64
65 /* Constructor used by element factory. */
66 explicit LegacyOutput(GstBaseSink *gobj);
67
68private:
69 shared_ptr<sigrok::OutputFormat> libsigrok_output_format_;
70 shared_ptr<sigrok::UserDevice> libsigrok_device_;
71 shared_ptr<sigrok::Output> libsigrok_output_;
72 map<string, Glib::VariantBase> options_;
73};
74#endif
75
76}
77#endif