diff options
author | Jose <jose@zeroc.com> | 2017-01-24 00:45:56 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2017-01-24 00:45:56 +0100 |
commit | e2bec205fec6d7a6083ea3c855649f53ff33721f (patch) | |
tree | 11baddbc72bc67273c1ecb4e78c3e0776f103329 /cpp | |
parent | Extra fixes for IceRuby Ice::Value implementation (diff) | |
download | ice-e2bec205fec6d7a6083ea3c855649f53ff33721f.tar.bz2 ice-e2bec205fec6d7a6083ea3c855649f53ff33721f.tar.xz ice-e2bec205fec6d7a6083ea3c855649f53ff33721f.zip |
Do not add abstract methods to PHP Value classes
Diffstat (limited to 'cpp')
-rw-r--r-- | cpp/src/slice2php/Main.cpp | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/cpp/src/slice2php/Main.cpp b/cpp/src/slice2php/Main.cpp index c8c3ea264fc..f2427500090 100644 --- a/cpp/src/slice2php/Main.cpp +++ b/cpp/src/slice2php/Main.cpp @@ -338,25 +338,6 @@ CodeVisitor::visitClassDefStart(const ClassDefPtr& p) } _out << eb; - if(!ops.empty()) - { - _out << sp; - for(OperationList::iterator oli = ops.begin(); oli != ops.end(); ++oli) - { - _out << nl << "abstract public function " << fixIdent((*oli)->name()) << '('; - ParamDeclList params = (*oli)->parameters(); - for(ParamDeclList::iterator q = params.begin(); q != params.end(); ++q) - { - if(q != params.begin()) - { - _out << ", "; - } - _out << '$' << fixIdent((*q)->name()); - } - _out << ");"; - } - } - if(!p->isLocal()) { // |