blob: bea2c69e41c538e5864f0605a3883bae8826c6b0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include "JSystem/JSystem.h" // IWYU pragma: keep
#include "JSystem/JAudio2/JAUBankTable.h"
void JAUBankTableDictionary::appendBankTable(JSULink<JAUBankTable>* bankTableList) {
append(bankTableList);
}
// Needed to make the inline function JAUBankTable::getBank appear in this TU
static const JASBank* dummy(const JAUBankTable* table) {
return table->getBank(0);
}
|