mirror of
https://github.com/SatDump/SatDump
synced 2026-08-13 17:47:30 -04:00
38 lines
638 B
C++
38 lines
638 B
C++
#include "trash_handler.h"
|
|
|
|
namespace satdump
|
|
{
|
|
namespace viewer
|
|
{
|
|
TrashHandler::TrashHandler()
|
|
{
|
|
handler_tree_icon = "\uf014";
|
|
}
|
|
|
|
TrashHandler::~TrashHandler()
|
|
{
|
|
}
|
|
|
|
void TrashHandler::drawMenu()
|
|
{
|
|
}
|
|
|
|
void TrashHandler::drawMenuBar()
|
|
{
|
|
}
|
|
|
|
void TrashHandler::drawContents(ImVec2 win_size)
|
|
{
|
|
}
|
|
|
|
void TrashHandler::setConfig(nlohmann::json p)
|
|
{
|
|
}
|
|
|
|
nlohmann::json TrashHandler::getConfig()
|
|
{
|
|
nlohmann::json p;
|
|
return p;
|
|
}
|
|
}
|
|
}
|