Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Aug 21, 2011, 4:04:54 PM (13 years ago)
Author:
landauf
Message:

added documentation and some comments

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/output/src/libraries/util/output/ConsoleWriter.h

    r8795 r8848  
    2727 */
    2828
     29/**
     30    @file
     31    @ingroup Output
     32    @brief Declaration of the ConsoleWriter singleton which is used to write output to the console.
     33*/
     34
    2935#ifndef _ConsoleWriter_H__
    3036#define _ConsoleWriter_H__
     
    3541namespace orxonox
    3642{
     43    /**
     44        @brief ConsoleWriter inherits from BaseWriter and writes output to the console.
     45
     46        This class can be seen as an equivalent to std::cout within the output
     47        system. It is implemented as a singleton for static acces.
     48    */
    3749    class _UtilExport ConsoleWriter : public BaseWriter
    3850    {
     
    5163            virtual ~ConsoleWriter();
    5264
    53             bool bEnabled_;
     65            bool bEnabled_; ///< If false, the instance will not write output to the console.
    5466    };
    5567}
Note: See TracChangeset for help on using the changeset viewer.