2011-m2s3-city-builder/triangle.hh
Georges Dupéron 60a49d96a1 Revert "Zut"
This reverts commit 86c8626586.
2011-11-28 07:41:41 +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