Elfspy/elfspy/Error.h

15 lines
214 B
C
Raw Normal View History

2016-09-16 17:45:35 +02:00
#ifndef ELFSPY_ERROR_H
#define ELFSPY_ERROR_H
#include <functional>
namespace spy
{
void error(const char* text);
void set_reporter(const std::function<void(const char*)>& reporter);
} // namespace spy
#endif