]> git.llucax.com Git - z.facultad/75.42/figuras.git/blob - rectangulo.cpp
Primera versión que compila.
[z.facultad/75.42/figuras.git] / rectangulo.cpp
1 /* vim: set et sts=4 sw=4 fdm=indent fdn=1 fo+=t tw=80:
2  *
3  * Taller de Programación (75.42).
4  *
5  * Ejercicio Número 5:
6  * Graficador de figuras.
7  *
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/).
11  *
12  * Creado: Sat Sep 20 06:09:02 ART 2003
13  *
14  * $Id$
15  */
16
17 #include "rectangulo.h"
18
19 #ifdef DEBUG
20 #   include <iostream>
21 #endif
22
23 Rectangulo::Rectangulo(size_t color, size_t grosor, const Punto& centro,
24         const char* nombre, float ancho, float alto):
25         Figura(color, grosor, centro, nombre), ancho(ancho), alto(alto) {
26 #ifdef DEBUG
27     std::cerr << "En constructor de Rectángulo." << std::endl;
28 #endif
29 }
30
31 Rectangulo::~Rectangulo(void) {
32 #ifdef DEBUG
33     std::cerr << "En destructor de Rectángulo." << std::endl;
34 #endif
35 }
36
37 void Rectangulo::dibujar(GtkWidget* widget) const {
38     //Figura::dibujar(out);
39 }
40