diff options
author | Kefu Chai <kchai@redhat.com> | 2019-09-18 06:41:46 +0200 |
---|---|---|
committer | Kefu Chai <kchai@redhat.com> | 2019-09-20 12:21:56 +0200 |
commit | 7df36081d160d3be19de7f6351fdcf4c116591b9 (patch) | |
tree | 81d55ed42408667085bd517ee7cc905171624159 /src/mon/MonClient.h | |
parent | mon/MonClient: add send_mon_message(MessageRef) (diff) | |
download | ceph-7df36081d160d3be19de7f6351fdcf4c116591b9.tar.xz ceph-7df36081d160d3be19de7f6351fdcf4c116591b9.zip |
mon/MonClient: include necessary #includes
ideally, a header file should be self-contained.
Signed-off-by: Kefu Chai <kchai@redhat.com>
Diffstat (limited to '')
-rw-r--r-- | src/mon/MonClient.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/mon/MonClient.h b/src/mon/MonClient.h index 6c16d4d08d1..6341963175c 100644 --- a/src/mon/MonClient.h +++ b/src/mon/MonClient.h @@ -14,8 +14,13 @@ #ifndef CEPH_MONCLIENT_H #define CEPH_MONCLIENT_H +#include <functional> +#include <list> +#include <map> #include <memory> #include <set> +#include <string> +#include <vector> #include "msg/Messenger.h" |