Log Viewer
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
325 B

#include "viewmodel/tree/util/Log2TreeItemConverter.h"
/*************************************************************************************************/
std::unique_ptr<TreeItem> Log2TreeItemConverter::convert(const Log_ptr log, TreeItem* parent)
{
return std::make_unique<TreeItem>(QVariantList{"A", "B"}, parent);
}