mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2024-11-15 06:52:52 +01:00
18 lines
503 B
C++
18 lines
503 B
C++
#pragma once
|
|
#include <gui/widgets/waterfall.h>
|
|
#include <gui/widgets/frequency_select.h>
|
|
#include <gui/widgets/menu.h>
|
|
#include <gui/dialogs/loading_screen.h>
|
|
#include <module.h>
|
|
#include <gui/main_window.h>
|
|
#include <gui/theme_manager.h>
|
|
|
|
namespace gui {
|
|
SDRPP_EXPORT ImGui::WaterFall waterfall;
|
|
SDRPP_EXPORT FrequencySelect freqSelect;
|
|
SDRPP_EXPORT Menu menu;
|
|
SDRPP_EXPORT ThemeManager themeManager;
|
|
SDRPP_EXPORT MainWindow mainWindow;
|
|
|
|
void selectSource(std::string name);
|
|
}; |