mirror of
https://github.com/WinampDesktop/winamp.git
synced 2024-09-24 15:54:12 +00:00
14 lines
156 B
C++
14 lines
156 B
C++
#ifndef _PAIR_H
|
|
#define _PAIR_H
|
|
|
|
template <class A, class B>
|
|
class Pair {
|
|
public:
|
|
Pair() {}
|
|
Pair(A _a, B _b) : a(_a), b(_b) {}
|
|
|
|
A a;
|
|
B b;
|
|
};
|
|
|
|
#endif
|