11 lines
116 B
C++
11 lines
116 B
C++
#ifndef G4Pair_h
|
|
#define G4Pair_h
|
|
|
|
template <class t1, class t2>
|
|
struct G4Pair
|
|
{
|
|
t1 first;
|
|
t2 second;
|
|
};
|
|
#endif
|