//order.cpp //example of a template function and //some classes with which it can be used. #include //cout, endl #include //string using namespace std; //put a and b into increasing order template void order(T& a, T& b) {if (b < a) {T temp = a; a = b; b = temp;} }//end order class Kid{ private: string name; public: Kid(string n) {name=n;} void tellName() {cout << '\n' << name;} };//end Kid class Box{ private: float length, width, depth; public: Box(float ln, float wd, float dp) {length=ln; width=wd; depth=dp;} float getSize() {return length*width*depth;} int operator <(Box& b) {int i=(getSize()