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

13 lines
213 B
C++

//
// Created by Lenn on 2025/10/17.
//
#include "heatmap.hh"
#include "heatmap.impl.hh"
BasicPlot::BasicPlot()
: pimpl {std::make_unique<Impl>(*this)} {}
void BasicPlot::set_matrix_size(const QSize &) {
}