doxygen didn't like that construct

This commit is contained in:
Bill Currie 2004-01-09 03:32:00 +00:00
parent 3ad2eaf3cd
commit 808baf2198

View file

@ -155,27 +155,42 @@ plitem_t *PL_ObjectAtIndex (plitem_t *, int);
*/
plitem_t *PL_D_AllKeys (plitem_t *);
//@{
/**
\fn qboolean PL_D_AddObject (plitem_t *dict, plitem_t *key, plitem_t *value)
\fn qboolean PL_A_AddObject (plitem_t *array, plitem_t *item)
\fn qboolean PL_A_InsertObjectAtIndex (plitem_t *array, plitem_t *item, int index)
\param array The array to add the item to
\param dict The dictionary to add the key/value pair to
\param item The item to be added to the array
\param index The location at which to insert the item into the array
\param key The key of the key/value pair to be added to the dictionary
\param value The value of the key/value pair to be added to the dictionary
\return true on success, false on failure
Note: the dictionary or array becomes the owner of the added item/pair.
Note: the dictionary becomes the owner of both the key and
the value.
*/
qboolean PL_D_AddObject (plitem_t *, plitem_t *, plitem_t *);
/**
\fn qboolean PL_A_AddObject (plitem_t *array, plitem_t *item)
\param array The array to add the item to
\param item The item to be added to the array
\return true on success, false on failure
Note: the array becomes the owner of the added item.
*/
qboolean PL_A_AddObject (plitem_t *, plitem_t *);
/**
\fn qboolean PL_A_InsertObjectAtIndex (plitem_t *array, plitem_t *item, int index)
\param array The array to add the item to
\param item The item to be added to the array
\param index The location at which to insert the item into the array
\return true on success, false on failure
Note: the array becomes the owner of the added item.
*/
qboolean PL_A_InsertObjectAtIndex (plitem_t *, plitem_t *, int);
//@}
plitem_t *PL_NewDictionary (void);
plitem_t *PL_NewArray (void);