ClusterAlgorithm.cpp 428 B

12345678910111213141516171819202122232425262728
  1. /**
  2. * @file ClusterAlgorithm.cpp
  3. * @brief Interface for Cluster-Algorithms
  4. * @author Erik Rodner
  5. * @date 10/29/2007
  6. */
  7. #include <iostream>
  8. #include "vislearning/math/cluster/ClusterAlgorithm.h"
  9. using namespace OBJREC;
  10. using namespace std;
  11. // refactor-nice.pl: check this substitution
  12. // old: using namespace ice;
  13. using namespace NICE;
  14. ClusterAlgorithm::ClusterAlgorithm()
  15. {
  16. }
  17. ClusterAlgorithm::~ClusterAlgorithm()
  18. {
  19. }