mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2024-11-15 15:02:52 +01:00
14 lines
359 B
C++
14 lines
359 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>
|
|
|
|
namespace gui {
|
|
SDRPP_EXPORT ImGui::WaterFall waterfall;
|
|
SDRPP_EXPORT FrequencySelect freqSelect;
|
|
SDRPP_EXPORT Menu menu;
|
|
|
|
void selectSource(std::string name);
|
|
}; |