Elfspy/elfspy/Report.h

25 lines
244 B
C
Raw Normal View History

2016-09-16 17:45:35 +02:00
#ifndef ELFSPY_REPORT_H
#define ELFSPY_REPORT_H
#include <sstream>
namespace spy
{
class Report : public std::ostringstream
{
public:
Report();
~Report();
protected:
void show();
private:
int error_;
};
} // namespace spy
#endif