-/* vim: set et sts=4 sw=4 fdm=indent fdl=1 fdn=1 fo+=t tw=80:
+/* vim: set et sts=4 sw=4 fdm=marker fmr={,} fdn=1 fo+=t tw=80:
*
* Taller de Programación (75.42).
*
#ifndef DIBUJO_H
#define DIBUJO_H
+#include "dllist.h"
+#include "figura.h"
+#include <ostream>
+
/**
* Representa un conjunto de figuras.
*/
class Dibujo {
protected:
+
/// Lista de figuras.
DLList figuras;
public:
+
/**
* Constructor.
*/
*
* \return true si se pudo agregar, false si no.
*/
- bool agregar_figura(const Figura& figura);
+ bool agregar_figura(Figura* figura);
/**
* Borra todas las figuras.
/**
* Dibuja.
+ *
+ * \param out Stream de salida donde dibujar.
*/
- virtual void dibujar(void) const;
+ virtual void dibujar(std::ostream& out);
-}
+};
#endif /* DIBUJO_H */