[PHP] Check for %feature("notabstract") when generating PHP5 class wrapper.

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@10441 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Olly Betts 2008-05-11 21:17:22 +00:00
commit 44a9ae4438
2 changed files with 6 additions and 1 deletions

View file

@ -2321,7 +2321,8 @@ public:
base.item = NULL;
}
if (Getattr(n, "abstract")) {
if (Getattr(n, "abstract") && !Getattr(n, "feature:notabstract")) {
Swig_print_node(n);
Printf(s_phpclasses, "abstract ");
}