Lecture 4 - Slide 7 : 40
Examples of explicit, deleted, and defaulted constructors

Examples that illustrate explicit, deleted and defaulted constructors

point.h
The Point class - with explicit and deleted constructors.
point.cc
Implementation of the Point class constructors.
prog.cc
Attempting Point constructions.
point1.h
The Point class - with explicit and defaulted constructors.
point1.cc
Implementation of the Point class constructors.
prog1.cc
Point constructions - now OK.