Elfspy/Error.h
2016-09-16 17:45:35 +02:00

15 lines
214 B
C++

#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