-
feat(parser): Parsing symbol file completely feat(helper): Added helpers to log and set infos in the widget UI feat(format): Added plugin symbol matrix format
feat(parser): Parsing symbol file completely feat(helper): Added helpers to log and set infos in the widget UI feat(format): Added plugin symbol matrix format
Helper.cpp 615 B
#include "Helper.hpp"
#include <cstdarg>
#include <QWidget>
#include "plugin/Plugin.hpp"
// Generated
#include "ui_widget.h"
#include "Parsers/Parser.hpp"
#include "Formats/SymbolMatrix.hpp"
#include "Parsers/SymbolParser.hpp"
#include "MatrixVisualizer.hpp"
namespace Helper
{
void log(LogStatus status, const char* format, ...)
{
va_list ap;
va_start(ap, format);
Matrix_visualizer::Get()->log(status, format, ap);
va_end(ap);
}
void set_infos(const char* format, ...)
{
va_list ap;
va_start(ap, format);
Matrix_visualizer::Get()->set_infos(format, ap);
va_end(ap);
}
}