14 lines
247 B
C++
14 lines
247 B
C++
#pragma once
|
|
|
|
#include "domain/Project.h"
|
|
|
|
#include <QJsonObject>
|
|
|
|
namespace core::library {
|
|
|
|
QJsonObject toolToJson(const core::Project::Tool& t);
|
|
bool toolFromJson(const QJsonObject& o, core::Project::Tool& out);
|
|
|
|
} // namespace core::library
|
|
|