satdump/plugins/bitview_app/tools/reverse_bits/reverse_bits.h

20 lines
486 B
C
Raw Permalink Normal View History

2026-08-01 17:56:06 +02:00
#pragma once
#include "tool.h"
namespace satdump
{
class ReverseBitsTool : public BitViewTool
{
private:
int chunk_size = 8;
bool should_process = false;
public:
std::string getName();
void renderMenu(std::shared_ptr<BitContainer> &container, bool is_busy);
bool needToProcess();
void setProcessed();
void process(std::shared_ptr<BitContainer> &container, float &process_progress);
};
} // namespace satdump