![]() |
Data Abstraction and Problem Solving with C++Walls and Mirrorsby Frank M. Carrano |
![]() |
example424.cppGo to the documentation of this file.00001 00015 int main() 00016 { 00017 NewClass<int> first; 00018 NewClass<double> second(4.8); 00019 00020 first.setData(5); 00021 cout << second.getData() << endl; 00022 00023 } // end main |