mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-06-17 10:15:47 -04:00
Initial community commit
This commit is contained in:
14
Src/Wasabi/bfc/pair.h
Normal file
14
Src/Wasabi/bfc/pair.h
Normal file
@ -0,0 +1,14 @@
|
||||
#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
|
Reference in New Issue
Block a user