Question: Change code to have doubles, strings, c-strings, and have appropriate convert constructors and getter methods (full code added) 12 // .... 13 11 Prints the

12 // .... 13 11 Prints the int value inside a 14 // object. lotclass 15 // ....... . 16 void printValue (IntClass x) 17 | 18 cout 2 using namespace std; 4 class IntClass 5 { 6 private: value; font to 8 public: Dicer 9 11 Convert constructor from int 10 IntClass(int intValue) TO D 11 1 12 value = intValue; 13 } 14 int getValue() const { return value; } to d o 15 }; too Contents of Convert.cpp odontoint 1 #include "Convert.h" 2 // ** *** *** ****** ** 3 // This function returns an int even though 4 // an IntClass object is declared as the 5 // return type. 6 //** 7 IntClass f(int intValue) 8 { 9 return intValue; 10 } 11 11.10 Con 12 //...... 13 // Prints the int value inside an IntClass 14 // object. 15 //....... 16 void printValue (IntClass x) 17 { 18 cout
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
