mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-06-10 11:59:58 -05:00
Initial community commit
This commit is contained in:
15
Src/nu/Pairs.h
Normal file
15
Src/nu/Pairs.h
Normal file
@ -0,0 +1,15 @@
|
||||
#pragma once
|
||||
namespace nu
|
||||
{
|
||||
|
||||
template <class A, class B>
|
||||
class Pair
|
||||
{
|
||||
public:
|
||||
Pair() {}
|
||||
Pair(const A &_a, const B &_b) : first(_a), second(_b) {}
|
||||
|
||||
A first;
|
||||
B second;
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user