Files
Renderive/YSGraphic_Core/Axis/FrequentAxis.cpp
T
2026-06-16 13:33:27 +08:00

16 lines
381 B
C++

#include "FrequentAxis_p.h"
#include "Axis_p.h"
namespace YSG {
Q_Ptr_cpp(FrequentAxis)
FrequentAxis::Builder::Builder(Plot* plot, Qt::Orientation orientation) {
this->plot = plot;
this->orientation = orientation;
}
FrequentAxis* FrequentAxis::Builder::build() {
auto ret = new FrequentAxis();
set(ret);
return ret;
}
}