ClusterAlgorithm.cpp 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. ///////////////////// ///////////////////// /////////////////////
  15. // CONSTRUCTORS / DESTRUCTORS
  16. ///////////////////// ///////////////////// /////////////////////
  17. ClusterAlgorithm::ClusterAlgorithm()
  18. {
  19. }
  20. ClusterAlgorithm::~ClusterAlgorithm()
  21. {
  22. }
  23. void ClusterAlgorithm::initFromConfig ( const NICE::Config * _conf, const std::string & _confSection )
  24. {
  25. //nothing to do
  26. }
  27. ///////////////////// INTERFACE PERSISTENT /////////////////////
  28. // interface specific methods for store and restore
  29. ///////////////////// INTERFACE PERSISTENT /////////////////////
  30. void ClusterAlgorithm::restore ( std::istream & is, int format )
  31. {
  32. //nothing to do
  33. }
  34. void ClusterAlgorithm::store ( std::ostream & os, int format ) const
  35. {
  36. //nothing to do
  37. }
  38. void ClusterAlgorithm::clear ()
  39. {
  40. //nothing to do
  41. }