home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / doxg1211.zip / doxygen.zip / examples / restypedef.cpp < prev    next >
C/C++ Source or Header  |  2000-02-13  |  418b  |  26 lines

  1. /*! \file restypedef.cpp
  2.  * An example of resolving typedefs.
  3.  */
  4.  
  5. /*! \struct CoordStruct
  6.  * A coordinate pair.
  7.  */
  8. struct CoordStruct
  9. {
  10.   /*! The x coordinate */
  11.   float x;
  12.   /*! The y coordinate */
  13.   float y;
  14. };
  15.  
  16. /*! Creates a type name for CoordStruct */ 
  17. typedef CoordStruct Coord;
  18.  
  19. /*! 
  20.  * This function returns the addition of \a c1 and \a c2, i.e:
  21.  * (c1.x+c2.x,c1.y+c2.y)
  22.  */
  23. Coord add(Coord c1,Coord c2)
  24. {
  25. }
  26.