Skip to content

Commit

Permalink
nilComponents.h documentation cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
noorus committed Apr 20, 2014
1 parent d77383f commit 0aa6a88
Showing 1 changed file with 12 additions and 7 deletions.
19 changes: 12 additions & 7 deletions include/nilComponents.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,11 @@ namespace Nil {
//! \addtogroup Nil
//! @{

//! \addtogroup Components
//! @{

//! \struct Button
//! \brief Digital push button component.
//! Digital push button component.
struct Button
{
public:
Expand All @@ -17,7 +20,7 @@ namespace Nil {
};

//! \struct Axis
//! \brief Analog axis controller component.
//! Analog axis controller component.
struct Axis
{
public:
Expand All @@ -26,7 +29,7 @@ namespace Nil {
};

//! \struct Slider
//! \brief Two-dimensional analog controller component.
//! Two-dimensional analog controller component.
struct Slider
{
public:
Expand All @@ -35,8 +38,8 @@ namespace Nil {
};

//! \struct POV
//! \brief Digital directional Point-of-View controller component.
//! Also known as the D-pad.
//! Digital directional Point-of-View controller component.
//! Also known as the D-pad.
struct POV
{
public:
Expand All @@ -54,7 +57,7 @@ namespace Nil {
};

//! \struct Wheel
//! \brief Mouse wheel component.
//! Mouse wheel component.
struct Wheel
{
public:
Expand All @@ -63,7 +66,7 @@ namespace Nil {
};

//! \struct Movement
//! \brief Mouse movement component.
//! Mouse movement component.
struct Movement
{
public:
Expand All @@ -73,4 +76,6 @@ namespace Nil {

//! @}

//! @}

}

0 comments on commit 0aa6a88

Please sign in to comment.