mirror of
git://git.savannah.nongnu.org/eliot.git
synced 2024-11-17 07:48:27 +01:00
add comments and emacs mode
This commit is contained in:
parent
fee2ddff8f
commit
63005cdddb
2 changed files with 28 additions and 0 deletions
|
@ -18,6 +18,13 @@
|
|||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*****************************************************************************/
|
||||
|
||||
/**
|
||||
* \file rack.cpp
|
||||
* \brief Rack class : multiset of tiles
|
||||
* \author Antoine Fraboulet & Olivier Teuliere
|
||||
* \date 2002 - 2005
|
||||
*/
|
||||
|
||||
#include "rack.h"
|
||||
|
||||
|
||||
|
@ -49,3 +56,10 @@ string Rack::toString()
|
|||
}
|
||||
return rs;
|
||||
}
|
||||
|
||||
/// Local Variables:
|
||||
/// mode: c++
|
||||
/// mode: hs-minor
|
||||
/// c-basic-offset: 4
|
||||
/// indent-tabs-mode: nil
|
||||
/// End:
|
||||
|
|
14
game/rack.h
14
game/rack.h
|
@ -18,6 +18,13 @@
|
|||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*****************************************************************************/
|
||||
|
||||
/**
|
||||
* \file rack.h
|
||||
* \brief Rack class : multiset of tiles
|
||||
* \author Antoine Fraboulet & Olivier Teuliere
|
||||
* \date 2002 - 2005
|
||||
*/
|
||||
|
||||
#ifndef _RACK_H_
|
||||
#define _RACK_H_
|
||||
|
||||
|
@ -55,3 +62,10 @@ private:
|
|||
};
|
||||
|
||||
#endif
|
||||
|
||||
/// Local Variables:
|
||||
/// mode: c++
|
||||
/// mode: hs-minor
|
||||
/// c-basic-offset: 4
|
||||
/// indent-tabs-mode: nil
|
||||
/// End:
|
||||
|
|
Loading…
Reference in a new issue