#include <ace/Pair_T.h>
template<class T1, class T2> class ACE_Reference_Pair {
public:
typedef T1 first_type;
typedef T2 second_type;
ACE_Reference_Pair (T1 &t1, T2 &t2);
T1 &first (void) const;
T2 &second (void) const;
protected:
T1 &first_;
T2 &second_;
};
typedef T1 first_type;
typedef T2 second_type;
ACE_Reference_Pair (T1 &t1, T2 &t2);
T1 &first (void) const;
T2 &second (void) const;
irfan@cs.wustl.edu