// file: template.cpp // authomatically generated with notangle starting from template.cnw // Romeo Rizzi 23-Apr-2001 // illustra e verifica il comportamento dei template in c++ #include template void swap(genType & a, genType & b) { genType swap = a; a = b; b = swap; } template genType min(const genType & a, const genType & b) { return (a