ld2daps/ld2dap/Filter.py
2018-04-03 19:28:17 +02:00

21 lines
378 B
Python

#!/usr/bin/python
# -*- coding: utf-8 -*-
# \file Filter.py
# \brief TODO
# \author Florent Guiotte <florent.guiotte@gmail.com>
# \version 0.1
# \date 03 avril 2018
#
# TODO details
from Input import Input
from Output import Output
class Filter(Input, Output):
def __init__(self):
super().__init__('Filter')
def _run(self):
print('ima not virtual!')