Doxygen main stuff

This commit is contained in:
Mark Watkins 2011-12-19 18:17:19 +10:00
parent e3bde9bd9c
commit c85f8b23e6
3 changed files with 33 additions and 4 deletions

View File

@ -6,7 +6,7 @@ License: GPL
*/ */
//******************************************************************************************** //********************************************************************************************
/// IMPORTANT!!! // IMPORTANT!!!
//******************************************************************************************** //********************************************************************************************
// Please INCREMENT the zeo_data_version in zel_loader.h when making changes to this loader // Please INCREMENT the zeo_data_version in zel_loader.h when making changes to this loader
// that change loader behaviour or modify channels. // that change loader behaviour or modify channels.

View File

@ -150,7 +150,7 @@ protected:
/*! \class CPAP /*! \class CPAP
\brief A CPAP classed machine object.. These are only really for show \brief A CPAP classed machine object..
*/ */
class CPAP:public Machine class CPAP:public Machine
{ {
@ -161,7 +161,7 @@ public:
/*! \class Oximeter /*! \class Oximeter
\brief An Oximeter classed machine object.. These are only really for show \brief An Oximeter classed machine object..
*/ */
class Oximeter:public Machine class Oximeter:public Machine
{ {
@ -172,7 +172,7 @@ protected:
}; };
/*! \class SleepStage /*! \class SleepStage
\brief A SleepStage classed machine object.. These are only really for show \brief A SleepStage classed machine object..
*/ */
class SleepStage:public Machine class SleepStage:public Machine
{ {

View File

@ -25,6 +25,35 @@ namespace Ui {
class MainWindow; class MainWindow;
} }
/*! \mainpage SleepyHead
\section intro_sec Introduction
SleepyHead is Cross-Platform Open-Source software for reviewing data from %CPAP machines, which are used in the treatment of Sleep Disorders.
SleepyHead has been created by <a href="http://jedimark64.blogspot.com">Mark Watkins</a> (JediMark), an Australian software developer.
This document is an attempt to provide a little technical insight into SleepyHead's program internals.
\section project_info Further Information
The project is hosted on sourceforge, and it's project page can be reached at <a href="http://sourceforge.net/projects/sleepyhead">http://sourceforge.net/projects/sleepyhead</a>.
There is also the <a href="http://sleepyhead.sourceforge.net">SleepyHead Wiki</a> containing further information
\section structure Program Structure
SleepyHead is written in C++ using Qt Toolkit library, and comprises of 3 main components
\list
\li The SleepLib Database, a specialized database for working with multiple sources of Sleep machine data.
\li A custom designed, high performance and interactive OpenGL Graphing Library.
\li and the main Application user interface.
\endlist
This document is still a work in progress, right now all the classes and sections are jumbled together.
*/
// * \section install_sec Installation
extern QStatusBar *qstatusbar; extern QStatusBar *qstatusbar;
class Daily; class Daily;