blob: 8a2317d8c2dee9648412a0a0454e6e5f7238f973 (
plain)
1
2
3
4
5
6
7
8
9
|
#pragma once
#include <string>
class ObjectStore;
class OSDSuperblock;
int update_mon_db(ObjectStore& fs, OSDSuperblock& sb,
const std::string& keyring_path,
const std::string& store_path);
|