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
|
#ifndef HEADER_ADDON_HPP
|
||||||
#define HEADER_ADDON_HPP
|
#define HEADER_ADDON_HPP
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \defgroup addonsgroup Add-ons
|
||||||
|
* Handles add-ons that can be downloaded
|
||||||
|
*/
|
||||||
|
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
||||||
@ -28,6 +33,9 @@
|
|||||||
|
|
||||||
class XMLNode;
|
class XMLNode;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \ingroup addonsgroup
|
||||||
|
*/
|
||||||
class Addon
|
class Addon
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
@ -27,6 +27,9 @@
|
|||||||
#include "io/xml_node.hpp"
|
#include "io/xml_node.hpp"
|
||||||
#include "utils/synchronised.hpp"
|
#include "utils/synchronised.hpp"
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \ingroup addonsgroup
|
||||||
|
*/
|
||||||
class AddonsManager
|
class AddonsManager
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
|
@ -34,6 +34,9 @@
|
|||||||
|
|
||||||
class XMLNode;
|
class XMLNode;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \ingroup addonsgroup
|
||||||
|
*/
|
||||||
class NetworkHttp
|
class NetworkHttp
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
@ -29,6 +29,9 @@ using namespace irr;
|
|||||||
|
|
||||||
class XMLNode;
|
class XMLNode;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \ingroup addonsgroup
|
||||||
|
*/
|
||||||
class NewsManager
|
class NewsManager
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
|
@ -25,7 +25,10 @@
|
|||||||
|
|
||||||
class Addon;
|
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
|
class Request
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
@ -18,7 +18,10 @@
|
|||||||
#ifndef HEADER_ZIP_HPP
|
#ifndef HEADER_ZIP_HPP
|
||||||
#define 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);
|
bool extract_zip(const std::string &from, const std::string &to);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -59,6 +59,8 @@
|
|||||||
|
|
||||||
\section Modules
|
\section Modules
|
||||||
|
|
||||||
|
\li \ref addonsgroup :
|
||||||
|
Handles add-ons that can be downloaded.
|
||||||
\li \ref animations :
|
\li \ref animations :
|
||||||
This module manages interpolation-based animation (of position, rotation
|
This module manages interpolation-based animation (of position, rotation
|
||||||
and/or scale)
|
and/or scale)
|
||||||
|
Loading…
Reference in New Issue
Block a user