From db2d6a0ebd0774785035e2c86e09459f75207822 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADtor=20Santos=20Costa?= Date: Mon, 30 Jun 2014 14:34:58 +0100 Subject: [PATCH] Start handling Prolog exceptions --- CXX/yapie.hh | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 CXX/yapie.hh diff --git a/CXX/yapie.hh b/CXX/yapie.hh new file mode 100644 index 000000000..a219275b9 --- /dev/null +++ b/CXX/yapie.hh @@ -0,0 +1,16 @@ + +class YAPEngine; +class YAPAtom; +class YAPFunctor; +class YAPApplTerm; +class YAPPairTerm; +class YAPQuery; +class YAPPredicate; + + +class YAPError { +public: + static const int SYNTAX_ERROR = 0x10000; +}; + +