git-svn-id: https://pupnp.svn.sourceforge.net/svnroot/pupnp/trunk@437 119443c7-1b9e-41f8-b6fc-b9c35fce742c
This commit is contained in:
Marcelo Roberto Jimenez 2008-06-12 03:41:08 +00:00
parent a583e0a60e
commit 219871b1dc
2 changed files with 19 additions and 18 deletions

View File

@ -5,19 +5,19 @@
/*! /*!
* \file * \defgroup UpnpString The UpnpString Class
* *
* \brief UpnpString object declararion. * \brief Implements string operations in the UPnP library.
*
* This class implements string operations in the UPnP library.
* *
* \author Marcelo Roberto Jimenez * \author Marcelo Roberto Jimenez
* *
* \version 1.0 * \version 1.0
* *
* \defgroup UpnpString The UpnpString Class
*
* @{ * @{
*
* \file
*
* \brief UpnpString object declarartion.
*/ */

View File

@ -1,12 +1,20 @@
/*! /*!
* \addtogroup UpnpString
*
* Due to its heavy use, this class is coded for efficiency, not for beauty.
* Do not use this as example to other classes. Please take a look at any
* other one.
*
* \todo Always alloc a minimum size like 64 bytes or so and when shrinking
* do not perform a new memory allocation.
*
* @{
*
* \file * \file
* *
* \brief UpnpString object implementation. * \brief UpnpString object implementation.
*
* \author Marcelo Roberto Jimenez
*
*/ */
@ -21,18 +29,9 @@
/*! /*!
* \ingroup UpnpString
*
* \brief Internal implementation of the class UpnpString. * \brief Internal implementation of the class UpnpString.
* *
* \internal * \internal
*
* Due to its heavy use, this class is coded for efficiency, not for beauty.
* Do not use this as example to other classes. Please take a look at any
* other one.
*
* \todo Always alloc a minimum size like 64 bytes or so and when shrinking
* do not perform a new memory allocation.
*/ */
struct SUpnpString struct SUpnpString
{ {
@ -151,3 +150,5 @@ void UpnpString_clear(UpnpString *p)
((struct SUpnpString *)p)->m_string[0] = 0; ((struct SUpnpString *)p)->m_string[0] = 0;
} }
/* @} UpnpString */