mirror of
https://github.com/SatDump/SatDump
synced 2026-08-13 17:47:30 -04:00
33 lines
No EOL
734 B
C++
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
|