X-Git-Url: https://git.llucax.com/z.facultad/75.42/euler-oo.git/blobdiff_plain/2ad7702430009b7adee71c280ad23a7c184fa0c8..05e3266645418717eaf79715c053725ea7115266:/dibujo.h diff --git a/dibujo.h b/dibujo.h index 9a23165..120db84 100644 --- a/dibujo.h +++ b/dibujo.h @@ -3,7 +3,7 @@ * Taller de Programación (75.42). * * Ejercicio Número 3: - * TODO + * Lista de figuras. * * Copyleft 2003 - Leandro Lucarella * Puede copiar, modificar y distribuir este programa bajo los términos de @@ -17,6 +17,9 @@ #ifndef DIBUJO_H #define DIBUJO_H +#include "dllist.h" +#include "figura.h" + /** * Representa un conjunto de figuras. */ @@ -43,7 +46,7 @@ class Dibujo { * * \return true si se pudo agregar, false si no. */ - bool agregar_figura(const Figura& figura); + bool agregar_figura(Figura* figura); /** * Borra todas las figuras. @@ -53,8 +56,8 @@ class Dibujo { /** * Dibuja. */ - virtual void dibujar(void) const; + virtual void dibujar(void); -} +}; #endif /* DIBUJO_H */