*/
#include "figura.h"
+#include <cstring>
#ifdef DEBUG
# include <iostream>
#ifdef DEBUG
std::cerr << "En constructor de Figura." << std::endl;
#endif
- strncpy(this->nombre, nombre, 30);
+ strncpy(this->nombre, nombre, MAX_NOMBRE);
}
Figura::~Figura(void) {