#include "Visualization/GraphPlottablesFactory.h" #include "Visualization/qcustomplot.h" #include Q_LOGGING_CATEGORY(LOG_GraphPlottablesFactory, "GraphPlottablesFactory") QVector GraphPlottablesFactory::create(const Variable *variable, QCustomPlot &plot) noexcept { auto result = QVector{}; if (variable) { /// @todo ALX } else { qCDebug(LOG_GraphPlottablesFactory()) << QObject::tr("Can't create graph plottables : the variable is null"); } return result; }