Skip to content

Commit

Permalink
libdeng2|Documentation: Apidoc improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Jul 20, 2012
1 parent 06e1090 commit 09719b0
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 23 deletions.
6 changes: 3 additions & 3 deletions doomsday/libdeng2/include/de/data/archive.h
Expand Up @@ -102,9 +102,9 @@ namespace de
* Loads a copy of the compressed data into memory for all the entries that
* don't already have uncompressed data stored.
*
* @param op If DetachFromSource, the archive becomes a standalone
* archive that no longer needs the source byte array to
* remain in existence.
* @param attach If DetachFromSource, the archive becomes a standalone
* archive that no longer needs the source byte array to
* remain in existence.
*/
void cache(CacheAttachment attach = DetachFromSource);

Expand Down
6 changes: 0 additions & 6 deletions doomsday/libdeng2/include/de/data/value.h
Expand Up @@ -24,12 +24,6 @@
#include "../ISerializable"
#include "../String"

/**
* @defgroup data Data
*
* Classes related to accessing, storing, and processing of data.
*/

namespace de
{
class Process;
Expand Down
4 changes: 2 additions & 2 deletions doomsday/libdeng2/include/de/data/variable.h
Expand Up @@ -104,10 +104,10 @@ namespace de
* @param name Name for the variable. Any periods (.) are not allowed.
* @param initial Initial value. Variable gets ownership. If no value is given here,
* a NoneValue will be created for the variable.
* @param mode Mode flags.
* @param varMode Mode flags.
*/
Variable(const String& name = "", Value* initial = 0,
const Flags& _mode = DefaultMode);
const Flags& varMode = DefaultMode);

/**
* Constructs a copy of another variable.
Expand Down
24 changes: 15 additions & 9 deletions doomsday/libdeng2/include/de/libdeng2.h
Expand Up @@ -25,19 +25,25 @@
*/

/**
* @defgroup core Core
* @defgroup data Data Types and Structures
* @defgroup input Input Subsystem
* @defgroup core Core
*
* @defgroup net Network
* @defgroup data Data Types and Structures
* Classes related to accessing, storing, and processing of data.
*
* @defgroup input Input Subsystem
*
* @defgroup net Network
* Classes responsible for network communications.
*
* @defgroup resource Resources
* @defgroup render Renderer
* @defgroup GL Graphics Library
* @defgroup math Math Utilities
* @defgroup resource Resources
*
* @defgroup render Renderer
*
* @defgroup GL Graphics Library
*
* @defgroup math Math Utilities
*
* @defgroup types Basic Types
* @defgroup types Basic Types
* Basic data types.
*/

Expand Down
6 changes: 3 additions & 3 deletions doomsday/libdeng2/include/de/vector.h
Expand Up @@ -35,7 +35,7 @@ namespace de
* Template class for 2D vectors (points). The members are public for
* convenient access. The used value type must be serializable.
*
* @ingroup types
* @ingroup math
*/
template <typename Type>
class Vector2 : public ISerializable
Expand Down Expand Up @@ -140,7 +140,7 @@ namespace de
* Template class for 3D vectors (points).
* The members are public for convenient access.
*
* @ingroup types
* @ingroup math
*/
template <typename Type>
class Vector3 : public Vector2<Type>
Expand Down Expand Up @@ -248,7 +248,7 @@ namespace de
* Template class for 4D vectors.
* The members are public for convenient access.
*
* @ingroup types
* @ingroup math
*/
template <typename Type>
class Vector4 : public Vector3<Type>
Expand Down

0 comments on commit 09719b0

Please sign in to comment.