hi, i'm trying to simply cout the elements of a vector using an overloaded
extraction operator. the vector contians Point, which is just a struct containing two doubles.
the vector is a private member of a class called Polygon, so heres my Point.h
#ifndef POINT_H
#define POINT_H
#include <iostream>
#include <string>
#include
…