18 lines
169 B
C
18 lines
169 B
C
|
#ifndef ELFSPY_FAIL_H
|
||
|
#define ELFSPY_FAIL_H
|
||
|
|
||
|
#include "elfspy/Report.h"
|
||
|
|
||
|
namespace spy
|
||
|
{
|
||
|
|
||
|
class Fail : public Report
|
||
|
{
|
||
|
public:
|
||
|
~Fail();
|
||
|
};
|
||
|
|
||
|
} // namespace spy
|
||
|
|
||
|
#endif
|