restypedef.cpp
Go to the documentation of this file.
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 */
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  */
24 {
25 }
Coord add(Coord c1, Coord c2)
Definition: restypedef.cpp:23
CoordStruct Coord
Definition: restypedef.cpp:17