prime/include/rstl/pair.hpp
Luke Street 5707a847da Minor improvements to CScriptVisorFlare
Former-commit-id: e31200f62d709f33ad9a257be84ccb97550d3b20
2022-11-01 21:21:07 -04:00

19 lines
288 B
C++

#ifndef _RSTL_PAIR
#define _RSTL_PAIR
#include "types.h"
namespace rstl {
template < typename L, typename R >
class pair {
public:
pair() {}
pair(const L& first, const R& second) : first(first), second(second) {}
L first;
R second;
};
} // namespace rstl
#endif // _RSTL_PAIR