Default constructor for a coordinate, delegating to the full signature
| 17 | |
| 18 | // Default constructor for a coordinate, delegating to the full signature |
| 19 | Coordinate::Coordinate() : Coordinate::Coordinate(0, 0) {} |
| 20 | |
| 21 | // Constructor which also allows the user to set the X and Y |
| 22 | Coordinate::Coordinate(double x, double y) : X(x), Y(y) {} |
nothing calls this directly
no outgoing calls
no test coverage detected