Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

function argument was ignored in CommandExecutor::execute()
added CoreIncludes.h to Identifier doxygen group
OutputStream sends remaining output to OutputManager before destruction

Location:
code/branches/output/src/libraries/util/output
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • code/branches/output/src/libraries/util/output/OutputStream.cc

    r8848 r8849  
    5555
    5656    /**
     57        @brief Destructor, sends remaining output to OutputManager (if any).
     58    */
     59    OutputStream::~OutputStream()
     60    {
     61        if (this->str() != "")
     62            *this << " [missing endl]" << std::endl;
     63    }
     64
     65    /**
    5766        @brief Sends the buffered message to OutputManager together with the stored level and context.
    5867        Additionally empties the buffer.
  • code/branches/output/src/libraries/util/output/OutputStream.h

    r8848 r8849  
    7878            _UtilExport OutputStream();
    7979            _UtilExport OutputStream(OutputLevel level, const OutputContextContainer& context);
     80            _UtilExport ~OutputStream();
    8081
    8182            void _UtilExport setOutputAttributes(OutputLevel level, const OutputContextContainer& context);
Note: See TracChangeset for help on using the changeset viewer.