ld2daps/ld2dap/Filter.py

17 lines
322 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')