From 2651a3623a2976b42feb3573d4bc49ecdc7c5edf Mon Sep 17 00:00:00 2001 From: Matthias Maennich Date: Wed, 12 Jun 2019 15:29:29 +0100 Subject: [PATCH] abg-reporter.h: add missing includes / using declarations In order to build this (external!) header file stand-alone, it required some minor fixes. I.e. adding some includes and using declarations. * include/abg-reporter.h: fix includes and using declarations Signed-off-by: Matthias Maennich --- include/abg-reporter.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/include/abg-reporter.h b/include/abg-reporter.h index 55cb8cc..f11e84d 100644 --- a/include/abg-reporter.h +++ b/include/abg-reporter.h @@ -28,8 +28,16 @@ #ifndef __ABG_REPORTER_H__ #define __ABG_REPORTER_H__ +#include +#include +#include + namespace abigail { + +using std::ostream; +using std::tr1::shared_ptr; + namespace comparison { class diff; -- 2.7.4