More on Doxygen
git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/trunk@10040 178a84e3-b1eb-0310-8ba1-8eac791a3b58
This commit is contained in:
parent
d04bc58413
commit
9ca73ca5f3
@ -20,6 +20,11 @@
|
||||
#ifndef HEADER_ADDON_HPP
|
||||
#define HEADER_ADDON_HPP
|
||||
|
||||
/**
|
||||
* \defgroup addonsgroup Add-ons
|
||||
* Handles add-ons that can be downloaded
|
||||
*/
|
||||
|
||||
#include <assert.h>
|
||||
#include <string>
|
||||
|
||||
@ -28,6 +33,9 @@
|
||||
|
||||
class XMLNode;
|
||||
|
||||
/**
|
||||
* \ingroup addonsgroup
|
||||
*/
|
||||
class Addon
|
||||
{
|
||||
public:
|
||||
|
@ -27,6 +27,9 @@
|
||||
#include "io/xml_node.hpp"
|
||||
#include "utils/synchronised.hpp"
|
||||
|
||||
/**
|
||||
* \ingroup addonsgroup
|
||||
*/
|
||||
class AddonsManager
|
||||
{
|
||||
private:
|
||||
|
@ -34,6 +34,9 @@
|
||||
|
||||
class XMLNode;
|
||||
|
||||
/**
|
||||
* \ingroup addonsgroup
|
||||
*/
|
||||
class NetworkHttp
|
||||
{
|
||||
public:
|
||||
|
@ -29,6 +29,9 @@ using namespace irr;
|
||||
|
||||
class XMLNode;
|
||||
|
||||
/**
|
||||
* \ingroup addonsgroup
|
||||
*/
|
||||
class NewsManager
|
||||
{
|
||||
private:
|
||||
|
@ -25,7 +25,10 @@
|
||||
|
||||
class Addon;
|
||||
|
||||
/** Stores a download request. They will be sorted by priorities. */
|
||||
/**
|
||||
* Stores a download request. They will be sorted by priorities.
|
||||
* \ingroup addonsgroup
|
||||
*/
|
||||
class Request
|
||||
{
|
||||
public:
|
||||
|
@ -18,7 +18,10 @@
|
||||
#ifndef HEADER_ZIP_HPP
|
||||
#define HEADER_ZIP_HPP
|
||||
|
||||
/** Extract a zip. */
|
||||
/**
|
||||
* Extract a zip.
|
||||
* \ingroup addonsgroup
|
||||
*/
|
||||
bool extract_zip(const std::string &from, const std::string &to);
|
||||
|
||||
#endif
|
||||
|
@ -59,6 +59,8 @@
|
||||
|
||||
\section Modules
|
||||
|
||||
\li \ref addonsgroup :
|
||||
Handles add-ons that can be downloaded.
|
||||
\li \ref animations :
|
||||
This module manages interpolation-based animation (of position, rotation
|
||||
and/or scale)
|
||||
|
Loading…
Reference in New Issue
Block a user