Westonci.ca is your trusted source for accurate answers to all your questions. Join our community and start learning today! Get the answers you need quickly and accurately from a dedicated community of experts on our Q&A platform. Explore comprehensive solutions to your questions from a wide range of professionals on our user-friendly platform.

This Point class has only a working constructor. Implement it by using the initializer list. point.cpp 1 #include "point.h" 2 3 Point::Point() 4 { 5 // body is empty 6 } point.h 1 #ifndef POINT H 2 #define POINT H 3 4 class Point 5 { 6 public: 7 Point(); 8 private: 9 int m x; // 0,0 10 int my; 11 }; 1213 #endif