]> git.llucax.com Git - z.facultad/75.42/euler-oo.git/blobdiff - dibujo.h
Se agrega un test de la DLList.
[z.facultad/75.42/euler-oo.git] / dibujo.h
index 120db8400f3d99c990f10d9fa6481aa98212de08..2e71af0f9cc537e8de209b0fbae515d082933a14 100644 (file)
--- a/dibujo.h
+++ b/dibujo.h
@@ -1,4 +1,4 @@
-/* vim: set et sts=4 sw=4 fdm=indent fdl=1 fdn=1 fo+=t tw=80:
+/* vim: set et sts=4 sw=4 fdm=marker fmr={,} fdn=1 fo+=t tw=80:
  *
  * Taller de Programación (75.42).
  *
@@ -19,6 +19,7 @@
 
 #include "dllist.h"
 #include "figura.h"
+#include <ostream>
 
 /**
  * Representa un conjunto de figuras.
 class Dibujo {
 
     protected:
+
         /// Lista de figuras.
         DLList figuras;
 
     public:
+
         /**
          * Constructor.
          */
@@ -55,8 +58,10 @@ class Dibujo {
 
         /**
          * Dibuja.
+         *
+         * \param out Stream de salida donde dibujar.
          */
-        virtual void dibujar(void);
+        virtual void dibujar(std::ostream& out);
 
 };