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.
14 lines
295 B
14 lines
295 B
#ifndef LOG2TREEITEMCONVERTER
|
|
#define LOG2TREEITEMCONVERTER
|
|
|
|
#include <memory>
|
|
#include "type/Log.h"
|
|
#include "viewmodel/tree/TreeItem.h"
|
|
|
|
class Log2TreeItemConverter
|
|
{
|
|
public:
|
|
static std::unique_ptr<TreeItem> convert(const Log_ptr log, TreeItem* parent);
|
|
};
|
|
|
|
#endif //LOG2TREEITEMCONVERTER
|
|
|