// sample driver test program -- IN PROGRESS #include #include "temp.h" using namespace std; int main() { Temperature t1; // should be 0 Celsius cout << "t1 = "; t1.Show(); // see "0 C" cout << '\n'; Temperature t2(45.6, 'F'); cout << "t2 = "; t2.Show(); // should see 45.6 F cout << '\n'; const Temperature t3(32, 'F'); // t3 can only call const public members cout << "t3 = "; t3.Show(); // should see 32 F cout << '\n'; return 0; }