blob: 139699daa7b1595e04a221159b4948a987766f0b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// -*- mode:c++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
// vim: ts=8 sw=2 smarttab
#include <string>
namespace rbd {
namespace mirror {
namespace image_sync {
namespace util {
std::string get_snapshot_name_prefix(const std::string& local_mirror_uuid);
} // namespace util
} // namespace image_sync
} // namespace mirror
} // namespace rbd
|