Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 2nd, 2012  |  syntax: None  |  size: 0.33 KB  |  hits: 14  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. What's the correct term for returning something as an out parameter?
  2. bool SomeFunc(std::string& o_xxx, char& o_yyy);
  3.        
  4. /**
  5.  *- Description : This function ...
  6.  *
  7.  * @param[out] xxx ...
  8.  * @param[out] yyy ...
  9.  *
  10.  * @return true for ..., false otherwise
  11.  *
  12.  ***********************************************************************/