]> git.llucax.com Git - z.facultad/75.42/euler-oo.git/blob - punto.h
e8275bb1041d2118ed77b55d4b34a14c6c929277
[z.facultad/75.42/euler-oo.git] / punto.h
1 /* vim: set et sts=4 sw=4 fdm=indent fdl=1 fdn=1 fo+=t tw=80:
2  *
3  * Taller de Programación (75.42).
4  *
5  * Ejercicio Número 3:
6  * Lista 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: vie sep 19 01:38:17 ART 2003
13  *
14  * $Id$
15  */
16
17 #ifndef PUNTO_H
18 #define PUNTO_H
19
20 /**
21  * Punto de un plano.
22  */
23 struct Punto {
24     int x;
25     int y;
26 };
27
28 #endif // PUNTO_H