PROBI  1.0
 All Classes Functions
EuclideanSquaredNorm.hpp
1 #ifndef EUCLIDEANSQUAREDNORM_H
2 #define EUCLIDEANSQUAREDNORM_H
3 
4 #include "Point.hpp"
5 #include "Norm.hpp"
6 
10 class EuclideanSquaredNorm : public Norm<Point>
11 {
12 public:
13  virtual double length(Point const & x) const;
14 };
15 
16 #endif