Files
ts-qt/components/charts/heatmap.impl.hh
2025-10-20 00:32:01 +08:00

22 lines
358 B
C++

//
// Created by Lenn on 2025/10/17.
//
#ifndef TOUCHSENSOR_HEATMAP_IMPL_HH
#define TOUCHSENSOR_HEATMAP_IMPL_HH
#include "heatmap.hh"
using namespace creeper::plot_widget::internal;
struct BasicPlot::Impl {
explicit Impl(BasicSelect& self) noexcept
: self{self} {
}
private:
BasicPlot& self;
};
#endif //TOUCHSENSOR_HEATMAP_IMPL_HH