#include "Punt.h" Punt::Punt() { this->x = this->y = this->z = 0; } Punt::Punt(int x, int y, int z) { this->x = x; this->y = y; this->z = z; } std::ostream& operator << ( std::ostream& output, const Punt& punt ) { output << "(" << punt.x << "," << punt.y << "," << punt.z << ")"; return output; }