with PHP5. There are no longer any warnings about these. git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@11771 626c5289-ae23-0410-ae9c-e8d60b6d4f22
14 lines
353 B
PHP
14 lines
353 B
PHP
<?php
|
|
|
|
require "tests.php";
|
|
require "cpp_static.php";
|
|
|
|
// New functions
|
|
check::functions(array(staticfunctiontest_static_func,staticfunctiontest_static_func_2,staticfunctiontest_static_func_3));
|
|
// New classes
|
|
check::classes(array(StaticMemberTest,StaticFunctionTest));
|
|
// New vars
|
|
check::globals(array(staticmembertest_static_int));
|
|
|
|
check::done();
|
|
?>
|