Add CMemoryCardDriver::CMemoryCardDriver

Former-commit-id: 8d49e80502
This commit is contained in:
Henrique Gemignani Passos Lima
2022-10-11 00:46:32 +03:00
parent 2db05d2334
commit 077a16896f
6 changed files with 77 additions and 35 deletions

View File

@@ -10,6 +10,12 @@ public:
inline pair() {}
inline pair(const L& first, const R& second) : first(first), second(second) {}
inline pair& operator=(const pair& other) {
first = other.first;
second = other.second;
return *this;
}
L first;
R second;
};