js8call/JS8_Main/Flatten.h
Chris-AC9KH 356bdc0f50 Code cleanup - move loose source and header files in source tree to group folders
Rename all header files with .h extension
Fix function declaration in HamlibTransceiver.h that overrode member function but was not marked override
Remove unused variable in Modulator.cpp
Remove unused files from source tree
Remove duplicate LazyFillComboBox files
Reformat codebase to LLVM C++ standard
2026-01-02 16:46:38 -06:00

32 lines
698 B
C++

#ifndef FLATTEN_HPP__
#define FLATTEN_HPP__
#include <memory>
// Functor by which to flatten (or not, by default) a spectrum; not
// reentrant, but serially reusable.
class Flatten {
public:
// Constructor
explicit Flatten(bool = false);
// Destructor
~Flatten();
// Turn flattening on or off
void operator()(bool value);
// Process (or not) the supplied spectrum data
void operator()(float *data, std::size_t size);
// Return active / inactive flattening status
explicit operator bool() const noexcept { return !!m_impl; }
bool live() const noexcept { return !!m_impl; }
private:
class Impl;
std::unique_ptr<Impl> m_impl;
};
#endif