mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2025-01-01 05:47:11 +01:00
58 lines
1.4 KiB
C++
58 lines
1.4 KiB
C++
#include <credits.h>
|
|
|
|
namespace sdrpp_credits {
|
|
const char* contributors[] = {
|
|
"Aang23",
|
|
"Alexsey Shestacov",
|
|
"Aosync",
|
|
"Benjamin Kyd",
|
|
"Benjamin Vernoux",
|
|
"Cropinghigh",
|
|
"Fred F4EED",
|
|
"Howard0su",
|
|
"Joshua Kimsey",
|
|
"Martin Hauke",
|
|
"Marvin Sinister",
|
|
"Maxime Biette",
|
|
"Paulo Matias",
|
|
"Raov",
|
|
"Cam K.",
|
|
"Shuyuan Liu",
|
|
"Syne Ardwin (WI9SYN)",
|
|
"Szymon Zakrent",
|
|
"Tobias Mädel",
|
|
"Zimm"
|
|
};
|
|
|
|
const char* libraries[] = {
|
|
"Dear ImGui (ocornut)",
|
|
"fftw3 (fftw.org)",
|
|
"glew (Nigel Stewart)",
|
|
"glfw (Camilla Löwy)",
|
|
"json (nlohmann)",
|
|
"spdlog (gabime)",
|
|
"Portable File Dialogs"
|
|
};
|
|
|
|
const char* patrons[] = {
|
|
"Bob Logan",
|
|
"Croccydile",
|
|
"Dale L Puckett (K0HYD)",
|
|
"Daniele D'Agnelli",
|
|
"EB3FRN",
|
|
"Eric Johnson",
|
|
"Flinger Films",
|
|
"W4IPA",
|
|
"Lee Donaghy",
|
|
"ON4MU",
|
|
"Passion-Radio.com",
|
|
"Scanner School",
|
|
"SignalsEverywhere",
|
|
"Syne Ardwin (WI9SYN)"
|
|
};
|
|
|
|
const int contributorCount = sizeof(contributors) / sizeof(char*);
|
|
const int libraryCount = sizeof(libraries) / sizeof(char*);
|
|
const int patronCount = sizeof(patrons) / sizeof(char*);
|
|
}
|