X-Git-Url: https://git.llucax.com/z.facultad/75.68/celdas.git/blobdiff_plain/44029734cc5263d0548dc78ce9d71c43719d1ea7..09715c02260f695a67bda6667961b6736bb0a7a8:/trunk/src/indicemagico.h?ds=sidebyside diff --git a/trunk/src/indicemagico.h b/trunk/src/indicemagico.h index f5a4ac2..7b28472 100644 --- a/trunk/src/indicemagico.h +++ b/trunk/src/indicemagico.h @@ -8,6 +8,7 @@ #include +#include #include @@ -22,21 +23,25 @@ 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) ; + m_nombres = new std::string[MAX_ELEMENTOS]; + m_datos = new T[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"; } + ~CIndiceMagico() + { + delete m_nombres; + delete m_datos; + } + public: void add(const char* nombre, const T dato) { @@ -52,14 +57,14 @@ public: void add(CIndiceMagico& indice) { - for (int i=0; i