Move some top comments to above the class.

The original attempt was not working for doxygen purposes.
This commit is contained in:
Jason Felds
2011-02-18 21:24:00 -05:00
parent 6f276da825
commit 2d76ee1023
14 changed files with 17 additions and 34 deletions
+1 -2
View File
@@ -1,5 +1,3 @@
/** @brief ScreenOptions - A grid of options; the selected option is drawn with a highlight rectangle. */
#ifndef SCREENOPTIONS_H
#define SCREENOPTIONS_H
@@ -30,6 +28,7 @@ InputMode StringToInputMode( const RString& str );
#define FOREACH_OptionsPlayer( pn ) \
for( PlayerNumber pn=GetNextHumanPlayer((PlayerNumber)-1); pn!=PLAYER_INVALID && (m_InputMode==INPUTMODE_INDIVIDUAL || pn==0); pn=GetNextHumanPlayer(pn) )
/** @brief A grid of options; the selected option is drawn with a highlight rectangle. */
class ScreenOptions : public ScreenWithMenuElements
{
public: