1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2025-11-18 16:15:21 +00:00

Adding documentation and improving code formatting.

git-svn-id: https://svn.code.sf.net/p/gnss-sdr/code/trunk@103 64b25241-fba3-4117-9849-534c7e92360d
This commit is contained in:
Carles Fernandez
2011-12-28 21:36:45 +00:00
parent 48719c3075
commit 2ce62706af
80 changed files with 1568 additions and 1498 deletions

View File

@@ -66,14 +66,14 @@ public:
//! \brief Virtual destructor. Derived classes must implement the destructor
virtual ~ControlThread();
/*! \brief Runs the control thread
*
* This is the main loop that reads and process the control messages
* 1- Connect the GNSS receiver flowgraph
* 2- Start the GNSS receiver flowgraph
* while (flowgraph_->running() && !stop)_{
* 3- Read control messages and process them }
*/
/*! \brief Runs the control thread
*
* This is the main loop that reads and process the control messages:
* - Connect the GNSS receiver flowgraph;
* - Start the GNSS receiver flowgraph;
* while (flowgraph_->running() && !stop)_{
* - Read control messages and process them; }
*/
void run();
/*!
@@ -101,9 +101,8 @@ public:
*/
GNSSFlowgraph* flowgraph()
{
return flowgraph_;
}
}
private: