Stefan Schuermans commited on 2011-12-20 21:17:19
Showing 3 changed files, with 8 additions and 4 deletions.
| ... | ... |
@@ -30,7 +30,8 @@ namespace Blinker {
|
| 30 | 30 |
* @param[in] streamMgr stream manager |
| 31 | 31 |
* @param[in] dirBase base directory |
| 32 | 32 |
*/ |
| 33 |
-Canvas::Canvas(CallMgr &callMgr, StreamMgr &streamMgr, const Directory &dirBase): |
|
| 33 |
+Canvas::Canvas(CallMgr &callMgr, StreamMgr &streamMgr, |
|
| 34 |
+ const Directory &dirBase): |
|
| 34 | 35 |
Module(callMgr, streamMgr, dirBase), |
| 35 | 36 |
m_fileFormat(dirBase.getFile("format")),
|
| 36 | 37 |
m_fileOutStream(dirBase.getFile("outstream"), streamMgr),
|
| ... | ... |
@@ -56,7 +56,8 @@ void Priority::Input::updateConfig() |
| 56 | 56 |
* @param[in] stream stream name |
| 57 | 57 |
* @param[in] pFrame current frame (NULL for none) |
| 58 | 58 |
*/ |
| 59 |
-void Priority::Input::setFrame(const std::string &stream, stBlinkenFrame *pFrame) |
|
| 59 |
+void Priority::Input::setFrame(const std::string &stream, |
|
| 60 |
+ stBlinkenFrame *pFrame) |
|
| 60 | 61 |
{
|
| 61 | 62 |
frame(pFrame); |
| 62 | 63 |
(void)stream; // unused |
| ... | ... |
@@ -142,8 +142,10 @@ protected: |
| 142 | 142 |
SOCK *m_pSock; ///< socket to use for sending streams |
| 143 | 143 |
DestListTracker m_destListTracker; ///< static destinations tracker |
| 144 | 144 |
DynDests m_dynDests; ///< dynamic destinations |
| 145 |
- std::string m_noFrameData; ///< "no frame" protocol data (empty if unknown) |
|
| 146 |
- std::string m_data; ///< current protocol data (empty if unknown) |
|
| 145 |
+ std::string m_noFrameData; /**< "no frame" protocol data |
|
| 146 |
+ (empty if unknown) */ |
|
| 147 |
+ std::string m_data; /**< current protocol data |
|
| 148 |
+ (empty if unknown) */ |
|
| 147 | 149 |
}; // class Sender |
| 148 | 150 |
|
| 149 | 151 |
} // namespace Blinker |
| 150 | 152 |