X-Git-Url: https://git.llucax.com/z.facultad/75.42/plaqui.git/blobdiff_plain/bed1e8f7b596cf1aa73c25b8b39dcffe145fa018..bd2c5ebb465f2265d618feefb66479e5259dcfaa:/Model/include/not.h diff --git a/Model/include/not.h b/Model/include/not.h index 5e74940..0f888bb 100644 --- a/Model/include/not.h +++ b/Model/include/not.h @@ -8,7 +8,8 @@ namespace PlaQui { namespace Model { -class Not:LogicControl { +class Not:public LogicControl { +public: Not():LogicControl(1,1) {} virtual ~Not() {} @@ -24,7 +25,7 @@ class Not:LogicControl { std::cout << "NOT NO CONECTADO" << std::endl; return false; } -} +}; } }