class PerfCountersCollection;
class md_config_obs_t;
class md_config_t;
-class HeartbeatMap;
+
+namespace ceph {
+ class HeartbeatMap;
+}
/* A CephContext represents the context held by a single library user.
* There can be multiple CephContexts in the same process.
/* Get the PerfCountersCollection of this CephContext */
PerfCountersCollection *GetPerfCountersCollection();
- HeartbeatMap *get_heartbeat_map() {
+ ceph::HeartbeatMap *get_heartbeat_map() {
return _heartbeat_map;
}
md_config_obs_t *_perf_counters_conf_obs;
- HeartbeatMap *_heartbeat_map;
+ ceph::HeartbeatMap *_heartbeat_map;
};
#endif