16 lines
381 B
C++
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;
|
|
}
|
|
} |