You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

19 lines
251 B

//
// Point.h
//
// Copyright (c) 2010 LearnBoost <tj@learnboost.com>
//
#ifndef __NODE_POINT_H__
#define __NODE_POINT_H__
template <class T>
class Point {
public:
T x, y;
Point(T x, T y): x(x), y(y) {}
};
#endif /* __NODE_POINT_H__ */