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 <maennich@google.com>
This commit is contained in:
Matthias Maennich 2019-06-12 15:29:29 +01:00 committed by Dodji Seketeli
parent f821382933
commit 2651a3623a

View File

@ -28,8 +28,16 @@
#ifndef __ABG_REPORTER_H__
#define __ABG_REPORTER_H__
#include <ostream>
#include <string>
#include <tr1/memory>
namespace abigail
{
using std::ostream;
using std::tr1::shared_ptr;
namespace comparison
{
class diff;