12345678910111213141516171819202122232425262728293031323334 |
- /**
- * @file ClusterAlgorithm.cpp
- * @brief Interface for Cluster-Algorithms
- * @author Erik Rodner
- * @date 10/29/2007
- */
- #ifdef NOVISUAL
- #include <vislearning/nice_nonvis.h>
- #else
- #include <vislearning/nice.h>
- #endif
- #include <iostream>
- #include "vislearning/math/cluster/ClusterAlgorithm.h"
- using namespace OBJREC;
- using namespace std;
- // refactor-nice.pl: check this substitution
- // old: using namespace ice;
- using namespace NICE;
- ClusterAlgorithm::ClusterAlgorithm()
- {
- }
- ClusterAlgorithm::~ClusterAlgorithm()
- {
- }
|