X-Git-Url: https://git.llucax.com/z.facultad/75.42/figuras.git/blobdiff_plain/acb106a7e3b4bc6b05e6c4c1ab2ff50ff10fac78..074cfd6ced0df4c6a74cc6193194fa2489c05887:/rectangulo.h diff --git a/rectangulo.h b/rectangulo.h index 22f7959..3a7e3ec 100644 --- a/rectangulo.h +++ b/rectangulo.h @@ -27,16 +27,16 @@ class Rectangulo: public Figura { protected: /// Ancho. - float ancho; + int ancho; /// Alto. - float alto; + int alto; public: /// Constructor. Rectangulo(size_t color, size_t grosor, const Punto& centro, - const char* nombre, float ancho, float alto); + const char* nombre, int ancho, int alto); /// Destructor. virtual ~Rectangulo(void); @@ -44,9 +44,9 @@ class Rectangulo: public Figura { /** * Dibuja. * - * \param out Stream de salida en donde dibujar. + * \param widget Widget donde dibujar. */ - virtual void dibujar(std::ostream& out) const; + virtual void dibujar(GtkWidget* widget) const; };