2011-m2s3-city-builder/triangle.hh
2011-11-24 00:47:00 +01:00

18 lines
270 B
C++

#ifndef _TRIANGLE_HH_
#define _TRIANGLE_HH_
#include "all_includes.hh"
class Triangle {
public:
Vertex a;
Vertex b;
Vertex c;
public:
Triangle(Vertex a, Vertex b, Vertex c);
public:
friend std::ostream& operator<<(std::ostream& os, const Triangle& t);
};
#endif