23 lines
494 B
Python
23 lines
494 B
Python
#!/usr/bin/python
|
|
# -*- coding: utf-8 -*-
|
|
# \file Input.py
|
|
# \brief TODO
|
|
# \author Florent Guiotte <florent.guiotte@gmail.com>
|
|
# \version 0.1
|
|
# \date 03 avril 2018
|
|
#
|
|
# TODO details
|
|
|
|
from Node import Node
|
|
|
|
class Input(Node):
|
|
def __init__(self, name='__CHILD__'):
|
|
super().__init__('Input:{}'.format(name))
|
|
self.outputs = list()
|
|
|
|
def register(self, output):
|
|
self.outputs.append(output)
|
|
|
|
def _run(self):
|
|
print('I RUN ADSAOADIQJOWDOASJDOQIJWDOIJQOWIDJO')
|