tests: Add missing copyright headers
[babeltrace.git] / tests / python-plugin-provider / bt_plugin_test_python_plugin_provider.py
CommitLineData
d2d857a8
MJ
1#
2# Copyright (C) 2019 EfficiOS Inc.
3#
4# This program is free software; you can redistribute it and/or
5# modify it under the terms of the GNU General Public License
6# as published by the Free Software Foundation; only version 2
7# of the License.
8#
9# This program is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12# GNU General Public License for more details.
13#
14# You should have received a copy of the GNU General Public License
15# along with this program; if not, write to the Free Software
16# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17#
18
4965530a
PP
19import bt2
20
21
88b3fc9c 22class MyIter(bt2._UserMessageIterator):
4965530a
PP
23 pass
24
25
26@bt2.plugin_component_class
27class MySource(bt2._UserSourceComponent,
88b3fc9c 28 message_iterator_class=MyIter):
4965530a
PP
29 pass
30
31
32@bt2.plugin_component_class
33class MyFilter(bt2._UserFilterComponent,
88b3fc9c 34 message_iterator_class=MyIter):
4965530a
PP
35 pass
36
37
38@bt2.plugin_component_class
39class MySink(bt2._UserSinkComponent):
40 def _consume(self):
41 pass
42
43
44bt2.register_plugin(__name__, 'sparkling', author='Philippe Proulx',
45 description='A delicious plugin.',
46 version=(1, 2, 3, 'EXTRA'),
47 license='MIT')
This page took 0.0339 seconds and 4 git commands to generate.