14 lines
255 B
C++
14 lines
255 B
C++
#pragma once
|
|
|
|
#include "domain/Project.h"
|
|
|
|
#include <QJsonObject>
|
|
|
|
namespace core::library {
|
|
|
|
QJsonObject entityToJson(const core::Project::Entity& e);
|
|
bool entityFromJson(const QJsonObject& o, core::Project::Entity& out);
|
|
|
|
} // namespace core::library
|
|
|