/* * * Copyright (c) 1994 * Hewlett-Packard Company * */ #ifndef PAIR_H #define PAIR_H template struct Pair { T1 first; T2 second; Pair(T1 x, T2 y) : first(x), second(y) {}; }; template inline Pair makePair(T1 t1, T2 t2) { return Pair(t1, t2); } #endif