blob: 9f079ee7467b5c5a10abf5eece143bc5c7349a63 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "remoteprojectstore.h"
namespace zen {
struct ZenRemoteStoreOptions : RemoteStoreOptions
{
std::string Url;
std::string ProjectId;
std::string OplogId;
};
std::shared_ptr<RemoteProjectStore> CreateZenRemoteStore(const ZenRemoteStoreOptions& Options);
} // namespace zen
|