*
* Taller de Programación (75.42).
*
- * Ejercicio Número 3:
- * Lista de figuras.
+ * Ejercicio Número 5:
+ * Graficador de figuras.
*
* Copyleft 2003 - Leandro Lucarella <llucare@fi.uba.ar>
* Puede copiar, modificar y distribuir este programa bajo los términos de
#endif
}
-void Figura::dibujar(std::ostream& out) const {
- out << "color(" << color << "), grosor(" << grosor
- << "), nombre(" << nombre << "), centro(";
- centro.dibujar(out);
- out << ")";
+void Figura::dibujar(GtkWidget* widget) const {
+ //out << "color(" << color << "), grosor(" << grosor
+ // << "), nombre(" << nombre << "), centro(";
+ //centro.dibujar(out);
}