summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorandot <mabingyao@gmail.com>2014-07-10 12:54:31 +0800
committerandot <mabingyao@gmail.com>2014-07-10 12:54:31 +0800
commit894ef44bacd1f44f6f7f3c74284af94ddda89f7e (patch)
treedd58688356ad990e360315c0bc39654e65658768 /include
parent28578382589dab25ea5fbd35b7754687706abc07 (diff)
Add Php::class_exists implementation.
Diffstat (limited to 'include')
-rw-r--r--include/fastcall.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/include/fastcall.h b/include/fastcall.h
new file mode 100644
index 0000000..a5a8e1c
--- /dev/null
+++ b/include/fastcall.h
@@ -0,0 +1,13 @@
+/**
+ * fastcall.h
+ *
+ * This file holds some PHP functions implementation in C directly.
+ *
+ */
+
+namespace Php {
+
+ bool class_exists(const std::string &classname, bool autoload = true);
+
+}
+