home *** CD-ROM | disk | FTP | other *** search
/ Game Programming in C++ - Start to Finish / GameProgrammingS.iso / tools_install / doxygen-1.4.4-setup.exe / {app} / examples / relates.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  2004-06-18  |  264 b   |  24 lines

  1. /*! 
  2.  * A String class.
  3.  */ 
  4.   
  5. class String
  6. {
  7.   friend int strcmp(const String &,const String &);
  8. };
  9.  
  10. /*! 
  11.  * Compares two strings.
  12.  */
  13.  
  14. int strcmp(const String &s1,const String &s2)
  15. {
  16. }
  17.  
  18. /*! \relates String
  19.  * A string debug function.
  20.  */
  21. void stringDebug()
  22. {
  23. }
  24.