Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changes between Version 17 and Version 18 of pps/tutorial_basic


Ignore:
Timestamp:
Aug 22, 2011, 1:56:53 PM (13 years ago)
Author:
landauf
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • pps/tutorial_basic

    v17 v18  
    101101
    102102=== Logging messages ===
    103 Stay in the ''XMLPort()'' function and add a statement after the SUPER call to display a log message with output level 3:
     103Stay in the ''XMLPort()'' function and add a statement after the SUPER call to display a log message with output level {{{user_info}}}:
    104104{{{
    105 COUT(3) << "My name is Bond. James Bond." << std::endl;
     105orxout(user_info) << "My name is Bond. James Bond." << endl;
    106106}}}
    107107Your job is to make the message sound meaningful for this particular ''XMLPort()'' function.