13 class DatasetProductHandler :
public Handler,
public ProcessingHandler
16 DatasetProductHandler();
17 ~DatasetProductHandler();
22 std::string current_cfg;
23 std::vector<nlohmann::json> available_presets;
24 std::unique_ptr<DatasetProductProcessor> processor;
33 std::string
getName() {
return "Products"; }
35 std::string getID() {
return "dataset_product_handler"; }
Dataset handler.
Definition dataset_handler.h:29
std::string getName()
Get this handler's readable name.
Definition dataset_product_handler.h:33
void drawContents(ImVec2 win_size)
Render explorer contents (center/left)
Definition dataset_product_handler.cpp:29
void do_process()
Actual processing function to be implemented by the child class.
Definition dataset_product_handler.cpp:92
void drawMenu()
Render explorer menu left sidebar.
Definition dataset_product_handler.cpp:27
SatDump's handler base class.
Definition handler.h:32