#include “listofpoints.hpp”
ListOfPoints::ListOfPoints() {
// implement me
Copyright By PowCoder代写 加微信 powcoder
void ListOfPoints::addAfter(Point& newPt, string name) {
// implement me
void ListOfPoints::addPoint(Point& newPt) {
// implement me
Point& ListOfPoints::getPointAt(unsigned int i) {
return m_points[i];
int ListOfPoints::getSize() const {
return -1;
void ListOfPoints::printList() const {
// implement me
void ListOfPoints::draw() const {
// implement me
程序代写 CS代考 加微信: powcoder QQ: 1823890830 Email: powcoder@163.com