Files
SDRPlusPlus/core/src/credits.cpp
2021-02-28 17:32:22 +01:00

36 lines
860 B
C++

#include <credits.h>
namespace sdrpp_credits {
const char* contributors[] = {
"Ryzerth (Author)",
"Aang23",
"Alexsey Shestacov",
"Aosync",
"Benjamin Kyd",
"Cropinghigh",
"Howard0su",
"Martin Hauke",
"Paulo Matias",
"Raov",
"Szymon Zakrent",
"Tobias Mädel"
};
const char* libraries[] = {
"Dear ImGui (ocornut)",
"json (nlohmann)",
"RtlAudio",
"SoapySDR (PothosWare)",
"spdlog (gabime)",
};
const char* patrons[] = {
"SignalsEverywhere",
"Lee Donaghy",
"Daniele D'Agnelli"
};
const int contributorCount = sizeof(contributors) / sizeof(char*);
const int libraryCount = sizeof(libraries) / sizeof(char*);
const int patronCount = sizeof(patrons) / sizeof(char*);
}