15 lines
348 B
C++
15 lines
348 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include "ShipLayoutBlueprint.h"
|
|
|
|
namespace ShipLayoutBlueprintSerializer
|
|
{
|
|
|
|
std::string serialize(const std::vector<ShipLayoutBlueprint>& blueprints);
|
|
std::vector<ShipLayoutBlueprint> deserialize(const std::string& tomlContent);
|
|
|
|
} // namespace ShipLayoutBlueprintSerializer
|