12 lines
187 B
C++
12 lines
187 B
C++
#pragma once
|
|
|
|
#include "PersistenceRequest.h"
|
|
|
|
#include <string>
|
|
|
|
class PersistenceWriter
|
|
{
|
|
public:
|
|
bool WriteSnapshot(const PersistenceSnapshot& snapshot, std::string& error) const;
|
|
};
|