-/* 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).
*
#ifndef FIGURA_H
#define FIGURA_H
+#include "punto.h"
+#include <cstdlib>
+#include <ostream>
+
/**
* Figura dibujable.
*/
class Figura {
+
protected:
/// Color.
Punto centro;
/// Nombre.
- string nombre;
+ char nombre[30];
public:
* Constructor.
*/
Figura(size_t color, size_t grosor, const Punto& centro,
- const std::string& nombre);
+ const char* nombre);
/**
* Destructor.
/**
* Dibuja.
+ *
+ * \param out Stream de salida en donde dibujar.
*/
- virtual void dibujar(void) const;
+ virtual void dibujar(std::ostream& out) const;
-}
+};
#endif /* FIGURA_H */