summaryrefslogtreecommitdiff
path: root/Examples/Exceptions/ExceptionThrow/exceptionThrow.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Examples/Exceptions/ExceptionThrow/exceptionThrow.cpp')
-rw-r--r--Examples/Exceptions/ExceptionThrow/exceptionThrow.cpp34
1 files changed, 17 insertions, 17 deletions
diff --git a/Examples/Exceptions/ExceptionThrow/exceptionThrow.cpp b/Examples/Exceptions/ExceptionThrow/exceptionThrow.cpp
index 3719e6f..d104047 100644
--- a/Examples/Exceptions/ExceptionThrow/exceptionThrow.cpp
+++ b/Examples/Exceptions/ExceptionThrow/exceptionThrow.cpp
@@ -1,14 +1,14 @@
/**
- * exception.cpp
- * @author Jasper van Eck<jasper.vaneck@copernica.com>
+ * exception.cpp
+ * @author Jasper van Eck<jasper.vaneck@copernica.com>
*
- * An example file to show the working of a C++ function that
- * throws an exception, which can be caught by PHP.
- *
+ * An example file to show the working of a C++ function that
+ * throws an exception, which can be caught by PHP.
+ *
*/
/**
- * Libraries used.
+ * Libraries used.
*/
#include <phpcpp.h>
@@ -18,28 +18,28 @@
using namespace std;
/**
- * my_throw_exception_function()
- * Throws an exception which should be caught by PHP.
+ * my_throw_exception_function()
+ * Throws an exception which should be caught by PHP.
*/
void my_throw_exception_function()
{
- throw Php::Exception("I threw an exception in my_throw_exception_function()");
+ throw Php::Exception("I threw an exception in my_throw_exception_function()");
}
// Symbols are exported according to the "C" language
extern "C"
{
- // export the "get_module" function that will be called by the Zend engine
- PHPCPP_EXPORT void *get_module()
- {
- // create extension
+ // export the "get_module" function that will be called by the Zend engine
+ PHPCPP_EXPORT void *get_module()
+ {
+ // create extension
static Php::Extension extension("my_exception_throw","1.0");
// add function to extension
extension.add("my_throw_exception_function", my_throw_exception_function);
-
- // return the extension module
- return extension.module();
- }
+
+ // return the extension module
+ return extension.module();
+ }
}