SDRPlusPlus/core/src/credits.cpp

39 lines
939 B
C++
Raw Normal View History

2020-12-22 18:42:30 +01:00
#include <credits.h>
namespace sdrpp_credits {
const char* contributors[] = {
"Alexandre Rouma (Author)",
2021-02-28 17:32:22 +01:00
"Aang23",
2020-12-22 18:42:30 +01:00
"Alexsey Shestacov",
2021-02-28 17:32:22 +01:00
"Aosync",
2020-12-22 18:42:30 +01:00
"Benjamin Kyd",
"Cropinghigh",
2020-12-26 23:12:09 +01:00
"Howard0su",
"Martin Hauke",
2021-02-28 17:32:22 +01:00
"Paulo Matias",
2020-12-22 18:42:30 +01:00
"Raov",
"Szymon Zakrent",
"Tobias Mädel"
2020-12-22 18:42:30 +01:00
};
const char* libraries[] = {
"Dear ImGui (ocornut)",
"json (nlohmann)",
2021-03-01 17:39:39 +01:00
"RtAudio",
2020-12-22 18:42:30 +01:00
"SoapySDR (PothosWare)",
"spdlog (gabime)",
};
const char* patrons[] = {
"Daniele D'Agnelli",
2021-03-07 20:11:35 +01:00
"W4IPA",
2021-02-10 21:35:56 +01:00
"Lee Donaghy",
"Passion-Radio.com",
2021-03-08 16:38:48 +01:00
"Scanner School",
"SignalsEverywhere"
2020-12-22 18:42:30 +01:00
};
const int contributorCount = sizeof(contributors) / sizeof(char*);
const int libraryCount = sizeof(libraries) / sizeof(char*);
const int patronCount = sizeof(patrons) / sizeof(char*);
}