mirror of https://github.com/PrimeDecomp/prime.git
19 lines
296 B
C++
19 lines
296 B
C++
#ifndef _RSTL_PAIR_HPP
|
|
#define _RSTL_PAIR_HPP
|
|
|
|
#include "types.h"
|
|
|
|
namespace rstl {
|
|
template < typename L, typename R >
|
|
class pair {
|
|
public:
|
|
inline pair() {}
|
|
inline pair(const L& first, const R& second) : first(first), second(second) {}
|
|
|
|
L first;
|
|
R second;
|
|
};
|
|
} // namespace rstl
|
|
|
|
#endif
|