mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-01-31 07:02:53 -08:00
11 lines
191 B
C++
11 lines
191 B
C++
#ifndef LIBPM3HELPERPP_H
|
|
#define LIBPM3HELPERPP_H
|
|
|
|
class ConsoleHandler {
|
|
public:
|
|
virtual int handle_output(char *string) = 0;
|
|
virtual ~ConsoleHandler() {}
|
|
};
|
|
|
|
#endif // LIBPM3HELPERPP_H
|