1 /* vim: set et sts=4 sw=4 fdm=marker fmr={,} fdn=1 fo+=t tw=80:
3 * Taller de Programación (75.42).
8 * Copyleft 2003 - Leandro Lucarella <llucare@fi.uba.ar>
9 * Puede copiar, modificar y distribuir este programa bajo los términos de
10 * la licencia GPL (http://www.gnu.org/).
12 * Creado: Sat Sep 20 05:57:53 ART 2003
25 class Rectangulo: public Figura {
38 Rectangulo(size_t color, size_t grosor, const Punto& centro,
39 const char* nombre, float ancho, float alto);
42 virtual ~Rectangulo(void);
47 * \param out Stream de salida en donde dibujar.
49 virtual void dibujar(std::ostream& out) const;
53 #endif /* RECTANGULO_H */