X-Git-Url: https://git.llucax.com/z.facultad/75.68/celdas.git/blobdiff_plain/44029734cc5263d0548dc78ce9d71c43719d1ea7..c31f28dc627150cda2d49912d408120e7ab8489a:/trunk/src/indicemagico.h diff --git a/trunk/src/indicemagico.h b/trunk/src/indicemagico.h index f5a4ac2..4c3396e 100644 --- a/trunk/src/indicemagico.h +++ b/trunk/src/indicemagico.h @@ -8,6 +8,7 @@ #include +#include #include @@ -22,18 +23,16 @@ public: public: CIndiceMagico() { - using std::cerr; - using std::endl; m_cant = 0 ; m_nombres = (std::string*)calloc(sizeof(std::string), MAX_ELEMENTOS) ; m_datos = (T*)calloc(sizeof(m_datos), MAX_ELEMENTOS) ; if (!m_nombres) - cerr << "No se pudo allocar el arreglo CIndiceMagico::m_nombres." << endl ; + std::cerr << "No se pudo allocar el arreglo CIndiceMagico::m_nombres.\n"; if (!m_datos) - cerr << "No se pudo allocar el arreglo CIndiceMagico::m_datos." << endl ; + std::cerr << "No se pudo allocar el arreglo CIndiceMagico::m_datos.\n"; } @@ -52,14 +51,14 @@ public: void add(CIndiceMagico& indice) { - for (int i=0; i