summaryrefslogtreecommitdiffstats
path: root/src/common/TextTable.h
diff options
context:
space:
mode:
authorJohn Spray <john.spray@redhat.com>2016-08-01 00:22:19 +0200
committerJohn Spray <john.spray@redhat.com>2016-09-29 18:27:02 +0200
commitab2403804908349bc0b7480bed177f8cb2e95c73 (patch)
tree6afe8812e687d5cbe62702ecef9bf613cfb31827 /src/common/TextTable.h
parentpybind/mgr: update rest module for pg_summary (diff)
downloadceph-ab2403804908349bc0b7480bed177f8cb2e95c73.tar.xz
ceph-ab2403804908349bc0b7480bed177f8cb2e95c73.zip
common/TextTable: add include guards
Signed-off-by: John Spray <john.spray@redhat.com>
Diffstat (limited to 'src/common/TextTable.h')
-rw-r--r--src/common/TextTable.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/common/TextTable.h b/src/common/TextTable.h
index 102e16fe482..60c982a7e5f 100644
--- a/src/common/TextTable.h
+++ b/src/common/TextTable.h
@@ -11,6 +11,10 @@
* Foundation. See file COPYING.
*
*/
+
+#ifndef TEXT_TABLE_H_
+#define TEXT_TABLE_H_
+
#include <vector>
#include <sstream>
#include <iomanip>
@@ -158,3 +162,6 @@ public:
void clear();
};
+
+#endif
+