grouping classes in documentation

This commit is contained in:
Johann Dreo 2010-11-05 15:59:35 +01:00
commit f478817c6e
73 changed files with 326 additions and 164 deletions

View file

@ -33,8 +33,11 @@
* Goldberg and Richardson's basic sharing
*/
/** A helper class for Sharing - to hold distances */
class dMatrix : public std::vector<double>
/** A helper class for Sharing - to hold distances
*
* @ingroup Selectors
* */
class dMatrix : public std::vector<double>
{
public:
// Ctor : sets size
@ -74,6 +77,7 @@
* Goldberg and Richardson's basic sharing
* see eoSharingSelect for how to use it
* and test/t-eoSharing.cpp for a sample use of both
* @ingroup Selectors
*/
template <class EOT>
class eoSharing : public eoPerf2Worth<EOT>