mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2025-03-24 17:10:11 +01:00
39 lines
939 B
C++
39 lines
939 B
C++
#include <credits.h>
|
|
|
|
namespace sdrpp_credits {
|
|
const char* contributors[] = {
|
|
"Alexandre Rouma (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)",
|
|
"RtAudio",
|
|
"SoapySDR (PothosWare)",
|
|
"spdlog (gabime)",
|
|
};
|
|
|
|
const char* patrons[] = {
|
|
"Daniele D'Agnelli",
|
|
"W4IPA",
|
|
"Lee Donaghy",
|
|
"Passion-Radio.com",
|
|
"Scanner School",
|
|
"SignalsEverywhere"
|
|
};
|
|
|
|
const int contributorCount = sizeof(contributors) / sizeof(char*);
|
|
const int libraryCount = sizeof(libraries) / sizeof(char*);
|
|
const int patronCount = sizeof(patrons) / sizeof(char*);
|
|
} |