Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Sep 16, 2008, 3:46:25 AM (16 years ago)
Author:
landauf
Message:

added comments to all my classes in util

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/trunk/src/util/OutputHandler.cc

    r1747 r1791  
    4646        this->logfilename_ = logfilename;
    4747        this->logfile_.open(this->logfilename_.c_str(), std::fstream::out);
    48         this->logfile_ << "Started log at yyyy/mm/dd hh:mm:ss" << std::endl;
     48        this->logfile_ << "Started log at yyyy/mm/dd hh:mm:ss" << std::endl; // Todo: Get date and time
    4949        this->logfile_.flush();
    5050    }
     
    122122
    123123    /**
    124         @brief Overloaded << operator, redirects the output to the console and the logfile.
     124        @brief Overloaded << operator, redirects the output to the console, the logfile and the ingame shell.
    125125        @param manipulator A function, manipulating the outstream.
    126126        @return A reference to the OutputHandler itself
     
    144144
    145145    /**
    146         @brief Overloaded << operator, redirects the output to the console and the logfile.
     146        @brief Overloaded << operator, redirects the output to the console, the logfile and the ingame shell.
    147147        @param manipulator A function, manipulating the outstream.
    148148        @return A reference to the OutputHandler itself
     
    166166
    167167    /**
    168         @brief Overloaded << operator, redirects the output to the console and the logfile.
     168        @brief Overloaded << operator, redirects the output to the console, the logfile and the ingame shell.
    169169        @param manipulator A function, manipulating the outstream.
    170170        @return A reference to the OutputHandler itself
Note: See TracChangeset for help on using the changeset viewer.