33 lines
543 B
Python
33 lines
543 B
Python
#!/usr/bin/python
|
|
# -*- coding: utf-8 -*-
|
|
# \file test.py
|
|
# \brief TODO
|
|
# \author Florent Guiotte <florent.guiotte@gmail.com>
|
|
# \version 0.1
|
|
# \date 03 avril 2018
|
|
#
|
|
# TODO details
|
|
|
|
from Node import Node
|
|
from Filter import Filter
|
|
from Input import Input
|
|
from Output import Output
|
|
|
|
def main():
|
|
i = Input()
|
|
o = Output()
|
|
n = Filter()
|
|
f = Filter()
|
|
print(n)
|
|
#n.run()
|
|
print(n.input)
|
|
f.input = i
|
|
n.input = f
|
|
o.input = n
|
|
o.run()
|
|
print(n.input)
|
|
print(f.outputs)
|
|
|
|
if __name__ == '__main__':
|
|
main()
|