#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; } }