Source code for core.hardware.Component

from abc import ABC

from core.BooleanFunction import BooleanFunction
from core.DrawInterface import DrawInterface
from core.IOInterface import IOInterface


[docs] class Component(BooleanFunction, IOInterface, DrawInterface, ABC): pass