X-Git-Url: https://git.llucax.com/z.facultad/75.42/plaqui.git/blobdiff_plain/f7e6ba4976cdafcb4aa3e39b03539d5a3d12f6a4..4ddd90e71988f16c5ea79f5de86a9fcb63973ded:/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; } -} +}; } }