Chameleon

Chameleon Svn Source Tree

Root/branches/xZenu/src/util/doxygen/examples/restypedef.cpp

Source at commit 1406 created 12 years 10 months ago.
By meklort, Revert drivers.c so that kexts are only loaded when OSBundleRequired is set and that value is not safe mode. Added some comments about it too.
1/*! \file restypedef.cpp
2 * An example of resolving typedefs.
3 */
4
5/*! \struct CoordStruct
6 * A coordinate pair.
7 */
8struct 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 */
17typedef 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 */
23Coord add(Coord c1,Coord c2)
24{
25}
26

Archive Download this file

Revision: 1406