X-Git-Url: https://git.llucax.com/z.facultad/75.42/euler-oo.git/blobdiff_plain/223250fc01a546d486434b216225d45be73c6dc5..eb6b99adc3dc50aa348dbecbed69b2c4ba41477e:/dllist.h diff --git a/dllist.h b/dllist.h index 14f7b41..1d2c34d 100644 --- a/dllist.h +++ b/dllist.h @@ -58,13 +58,13 @@ class DLList { protected: /// Puntero al primer nodo. - DLListNode* _first; + DLListNode* first; /// Puntero al nodo actual. - DLListNode* _current; + DLListNode* curr; /// Puntero al último nodo. - DLListNode* _last; + DLListNode* last; public: @@ -117,8 +117,7 @@ class DLList { * \endcode * * \return Último elemento o NULL si está vacía. - * \see DLList_have_more(), DLList_prev(), DLList_begin(), DLList_next() - * \pre La DLList debe estar \ref DLList_new "creada" correctamente. + * \see have_more(), prev(), begin(), next() */ void* end(void);