Files
geant4/source/processes/hadronic/util/include/G4Pair.hh
T
2016-06-08 15:55:53 +02:00

11 lines
116 B
C++

#ifndef G4Pair_h
#define G4Pair_h
template <class t1, class t2>
struct G4Pair
{
t1 first;
t2 second;
};
#endif