11 lines
120 B
C++
Executable file
11 lines
120 B
C++
Executable file
#ifndef _error_h
|
|
#define _error_h
|
|
|
|
#include <string>
|
|
|
|
void error(std::string msg);
|
|
|
|
void stop(std::string msg);
|
|
|
|
#endif
|