13 lines
213 B
C++
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 &) {
|
|
}
|