common.hpp: fix documentation of functions
Functions inside namespace are tough to document, bypassing this by documenting the namespace and then using the namespace doc as common.hpp doc in the index Signed-off-by: Brendan Le Foll <brendan.le.foll@intel.com>
This commit is contained in:
@@ -6,18 +6,18 @@
|
|||||||
<tab type="pages" visible="yes" title="" intro=""/>
|
<tab type="pages" visible="yes" title="" intro=""/>
|
||||||
<tab type="modules" visible="yes" title="" intro=""/>
|
<tab type="modules" visible="yes" title="" intro=""/>
|
||||||
<tab type="namespaces" visible="yes" title="">
|
<tab type="namespaces" visible="yes" title="">
|
||||||
<tab type="namespacelist" visible="yes" title="" intro=""/>
|
<tab type="namespacelist" visible="yes" title="" intro=""/>
|
||||||
<tab type="namespacemembers" visible="yes" title="" intro=""/>
|
<tab type="namespacemembers" visible="yes" title="" intro=""/>
|
||||||
</tab>
|
</tab>
|
||||||
<tab type="classes" visible="yes" title="">
|
<tab type="classes" visible="yes" title="">
|
||||||
<tab type="classlist" visible="yes" title="" intro=""/>
|
<tab type="classlist" visible="yes" title="" intro=""/>
|
||||||
<tab type="classindex" visible="$ALPHABETICAL_INDEX" title=""/>
|
<tab type="classindex" visible="$ALPHABETICAL_INDEX" title=""/>
|
||||||
<tab type="hierarchy" visible="yes" title="" intro=""/>
|
<tab type="hierarchy" visible="yes" title="" intro=""/>
|
||||||
<tab type="classmembers" visible="yes" title="" intro=""/>
|
<tab type="classmembers" visible="yes" title="" intro=""/>
|
||||||
</tab>
|
</tab>
|
||||||
<tab type="files" visible="yes" title="">
|
<tab type="files" visible="yes" title="">
|
||||||
<tab type="filelist" visible="yes" title="" intro=""/>
|
<tab type="filelist" visible="yes" title="" intro=""/>
|
||||||
<tab type="globals" visible="yes" title="" intro=""/>
|
<tab type="globals" visible="yes" title="" intro=""/>
|
||||||
</tab>
|
</tab>
|
||||||
<tab type="examples" visible="yes" title="" intro=""/>
|
<tab type="examples" visible="yes" title="" intro=""/>
|
||||||
</navindex>
|
</navindex>
|
||||||
|
|||||||
@@ -27,6 +27,9 @@
|
|||||||
#include "common.h"
|
#include "common.h"
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @namespace mraa namespace
|
||||||
|
*/
|
||||||
namespace mraa {
|
namespace mraa {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -40,7 +43,7 @@ namespace mraa {
|
|||||||
* Get libmraa version.
|
* Get libmraa version.
|
||||||
*
|
*
|
||||||
* @return libmraa version (e.g. v0.4.0-20-gb408207)
|
* @return libmraa version (e.g. v0.4.0-20-gb408207)
|
||||||
*/
|
*/
|
||||||
std::string getVersion()
|
std::string getVersion()
|
||||||
{
|
{
|
||||||
std::string ret = mraa_get_version();
|
std::string ret = mraa_get_version();
|
||||||
@@ -55,7 +58,7 @@ std::string getVersion()
|
|||||||
*
|
*
|
||||||
* @param priority Value from typically 0 to 99
|
* @param priority Value from typically 0 to 99
|
||||||
* @return The priority value set
|
* @return The priority value set
|
||||||
*/
|
*/
|
||||||
int setPriority(const unsigned int priority)
|
int setPriority(const unsigned int priority)
|
||||||
{
|
{
|
||||||
return mraa_set_priority(priority);
|
return mraa_set_priority(priority);
|
||||||
|
|||||||
@@ -16,14 +16,14 @@ classes directly wrap the C API and provide a near 1:1 mapping of
|
|||||||
functionality.
|
functionality.
|
||||||
|
|
||||||
<center>
|
<center>
|
||||||
| C API Modules | C++ API Classes |
|
| C API Modules | C++ API Classes |
|
||||||
|:----------------------:|:---------------------------:|
|
|:----------------------:|:----------------------------:|
|
||||||
| @ref gpio.h "gpio" | @ref mraa::Gpio "Gpio class" |
|
| @ref gpio.h "gpio" | @ref mraa::Gpio "Gpio class" |
|
||||||
| @ref i2c.h "i2c" | @ref mraa::I2c "I2c class" |
|
| @ref i2c.h "i2c" | @ref mraa::I2c "I2c class" |
|
||||||
| @ref aio.h "aio" | @ref mraa::Aio "Aio class" |
|
| @ref aio.h "aio" | @ref mraa::Aio "Aio class" |
|
||||||
| @ref pwm.h "pwm" | @ref mraa::Pwm "Pwm class" |
|
| @ref pwm.h "pwm" | @ref mraa::Pwm "Pwm class" |
|
||||||
| @ref spi.h "spi" | @ref mraa::Spi "Spi class" |
|
| @ref spi.h "spi" | @ref mraa::Spi "Spi class" |
|
||||||
| @ref common.h "common" | @ref common.hpp "common" |
|
| @ref common.h "common" | @ref mraa "common" |
|
||||||
</center>
|
</center>
|
||||||
|
|
||||||
### Hello Mraa
|
### Hello Mraa
|
||||||
|
|||||||
Reference in New Issue
Block a user