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

12 lines
157 B
C++
Raw Normal View History

2014-06-30 14:34:58 +01:00
class YAPError {
2015-07-06 12:01:55 +01:00
int errNo;
2014-06-30 14:34:58 +01:00
public:
2015-07-06 12:01:55 +01:00
YAPError() { errNo = YAP_NO_ERROR; };
YAPError(int err) { errNo = err; };
int get();
const char *text();
2014-07-10 15:07:55 +01:00
};
2014-06-30 14:34:58 +01:00