Skip to content
Snippets Groups Projects
Commit 4bbbe44c authored by Nina Džugasová's avatar Nina Džugasová Committed by Tomáš Oberhuber
Browse files

Fixed Logger documentation.

parent 85aae073
No related branches found
No related tags found
1 merge request!15Nina
...@@ -33,7 +33,7 @@ class Logger ...@@ -33,7 +33,7 @@ class Logger
/// ///
/// The header usually contains title of the program. /// The header usually contains title of the program.
/// ///
/// \param title String containing the header title. /// \param title A String containing the header title.
void writeHeader( const String& title ); void writeHeader( const String& title );
/// \brief Creates separator used as a log structure. /// \brief Creates separator used as a log structure.
...@@ -78,8 +78,10 @@ class Logger ...@@ -78,8 +78,10 @@ class Logger
protected: protected:
/// \brief Integer defining the width of the log.
int width; int width;
/// \brief Output stream where the log will be printed out.
std::ostream& stream; std::ostream& stream;
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment