// File: max.H // #ifndef MAX_H #define MAX_H template T max (const T& a, const T& b) { if ( a < b) return b; else return a; } #endif