satdump/src-core/handler/trash/trash_handler.h
2025-04-14 19:03:42 +01:00

33 lines
No EOL
734 B
C++

#pragma once
#include "../handler.h"
namespace satdump
{
namespace viewer
{
class TrashHandler : public Handler
{
public:
TrashHandler();
~TrashHandler();
// The Rest
void drawMenu();
void drawContents(ImVec2 win_size);
void drawMenuBar();
void setConfig(nlohmann::json p);
nlohmann::json getConfig();
void addSubHandler(std::shared_ptr<Handler> handler)
{
// Do nothing!
}
std::string getName() { return "Trash"; }
std::string getID() { return "trash_handler"; }
};
} // namespace viewer
} // namespace satdump