summaryrefslogtreecommitdiff
path: root/Examples/CppClassesInPhp/mycustomclass.cpp
diff options
context:
space:
mode:
authorJasperVanEck <jaspergkurtz@gmail.com>2013-12-02 17:09:59 +0100
committerJasperVanEck <jaspergkurtz@gmail.com>2013-12-02 17:09:59 +0100
commit3750e24683f3a1d0b643e9808d9619db40d31cc4 (patch)
treefd6a2c60a0ff95460d73f0004ef2d4e12556e57a /Examples/CppClassesInPhp/mycustomclass.cpp
parent9bb110fe1b7d9684d0af6bdd208b02a04c2a7392 (diff)
Added CppClassInPhp Example
Diffstat (limited to 'Examples/CppClassesInPhp/mycustomclass.cpp')
-rw-r--r--Examples/CppClassesInPhp/mycustomclass.cpp16
1 files changed, 0 insertions, 16 deletions
diff --git a/Examples/CppClassesInPhp/mycustomclass.cpp b/Examples/CppClassesInPhp/mycustomclass.cpp
deleted file mode 100644
index a2e3ca6..0000000
--- a/Examples/CppClassesInPhp/mycustomclass.cpp
+++ /dev/null
@@ -1,16 +0,0 @@
-/**
- * Includes
- */
-#include "includes.h"
-
-/**
- * Does some random printing.
- * @param Php::Parameters
- */
-void MyCustomClass::myMethod(Php::Parameters &params)
-{
- cout << "myMethod is called." << endl;
- cout << "_x: " << _x << endl;
- _x = params[0];
- cout << "New _x" << _x << endl;
-}