SDRPlusPlus/core/src/credits.cpp

32 wiersze
779 B
C++
Czysty Zwykły widok Historia

2020-12-22 17:42:30 +00:00
#include <credits.h>
namespace sdrpp_credits {
const char* contributors[] = {
"Ryzerth (Author)",
"aosync",
"Alexsey Shestacov",
"Benjamin Kyd",
"Cropinghigh",
2020-12-26 22:12:09 +00:00
"Howard0su",
2020-12-22 17:42:30 +00:00
"Tobias Mädel",
"Raov",
2020-12-26 22:12:09 +00:00
"Szymon Zakrent"
2020-12-22 17:42:30 +00:00
};
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*);
}