This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
yap-6.3/CXX/yapie.hh
Vítor Santos Costa 705a6e9b7f cleanups
2015-07-06 12:01:55 +01:00

12 lines
157 B
C++

class YAPError {
int errNo;
public:
YAPError() { errNo = YAP_NO_ERROR; };
YAPError(int err) { errNo = err; };
int get();
const char *text();
};