mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2025-01-06 00:07:11 +01:00
30 lines
730 B
C++
30 lines
730 B
C++
|
#include <credits.h>
|
||
|
|
||
|
namespace sdrpp_credits {
|
||
|
const char* contributors[] = {
|
||
|
"Ryzerth (Author)",
|
||
|
"aosync",
|
||
|
"Alexsey Shestacov",
|
||
|
"Benjamin Kyd",
|
||
|
"Tobias Mädel",
|
||
|
"Raov",
|
||
|
"Howard0su"
|
||
|
};
|
||
|
|
||
|
const char* libraries[] = {
|
||
|
"Dear ImGui (ocornut)",
|
||
|
"json (nlohmann)",
|
||
|
"portaudio (P.A. comm.)",
|
||
|
"SoapySDR (PothosWare)",
|
||
|
"spdlog (gabime)",
|
||
|
};
|
||
|
|
||
|
const char* patrons[] = {
|
||
|
"SignalsEverywhere",
|
||
|
"Lee Donaghy"
|
||
|
};
|
||
|
|
||
|
const int contributorCount = sizeof(contributors) / sizeof(char*);
|
||
|
const int libraryCount = sizeof(libraries) / sizeof(char*);
|
||
|
const int patronCount = sizeof(patrons) / sizeof(char*);
|
||
|
}
|