]> git.llucax.com Git - z.facultad/75.42/euler-oo.git/blobdiff - punto.h
Primera version de Rectangulo.
[z.facultad/75.42/euler-oo.git] / punto.h
diff --git a/punto.h b/punto.h
index e8275bb1041d2118ed77b55d4b34a14c6c929277..cc9ae6918c0611c1df0e1b61fe7fce098860b238 100644 (file)
--- a/punto.h
+++ b/punto.h
 #ifndef PUNTO_H
 #define PUNTO_H
 
-/**
- * Punto de un plano.
- */
+#include <ostream>
+
+/// Punto de un plano.
 struct Punto {
+    /// Coordenada x.
     int x;
+    /// Coordenada y.
     int y;
+    /// Constructor.
+    Punto(int x, int y): x(x), y(y) {}
+    /// Destructor.
+    virtual ~Punto(void) {}
+    /// Dibuja un punto.
+    virtual void dibujar(std::ostream& out) const {
+        out << "(" << x << "," << y << ")" << std::endl;
+    }
 };
 
 #endif // PUNTO_H