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.
15 lines
295 B
15 lines
295 B
6 months ago
|
#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
|