satdump/plugins/bitview_app/tool.h

17 lines
456 B
C
Raw Permalink Normal View History

2024-05-19 15:16:25 +02:00
#pragma once
2025-02-10 20:09:03 +01:00
#include "bitview.h"
2024-05-19 15:16:25 +02:00
#include "libs/ctpl/ctpl_stl.h"
namespace satdump
{
class BitViewTool
{
public:
virtual std::string getName() = 0;
virtual void renderMenu(std::shared_ptr<BitContainer> &container, bool is_busy) = 0;
virtual bool needToProcess() = 0;
virtual void setProcessed() = 0;
virtual void process(std::shared_ptr<BitContainer> &container, float &process_progress) = 0;
};
}