#include #include "Box.hpp" #include "Student.hpp" using namespace std; int main() { Box b(15); Box d(4.23); Student kate = {"Kate", 1234}; Box studentBox(kate); Student katherine = studentBox.get(); katherine.setName("Katherine"); cout << "--- Printing Values ---" << endl; cout << kate << endl; cout << katherine << endl; cout << studentBox.get() << endl; cout << "--- Destroying objects ---" << endl; }