diff options
Diffstat (limited to 'php/src/php7/Operation.h')
-rw-r--r-- | php/src/php7/Operation.h | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/php/src/php7/Operation.h b/php/src/php7/Operation.h new file mode 100644 index 00000000000..91230201bc4 --- /dev/null +++ b/php/src/php7/Operation.h @@ -0,0 +1,37 @@ +// ********************************************************************** +// +// Copyright (c) 2003-2016 ZeroC, Inc. All rights reserved. +// +// This copy of Ice is licensed to you under the terms described in the +// ICE_LICENSE file included in this distribution. +// +// ********************************************************************** + +#ifndef ICEPHP_OPERATION_H +#define ICEPHP_OPERATION_H + +#include <Config.h> + +// +// Global functions. +// +extern "C" +{ +ZEND_FUNCTION(IcePHP_defineOperation); +} + +namespace IcePHP +{ + +class Operation : public IceUtil::Shared +{ +public: + + virtual zend_function* function() = 0; + +}; +typedef IceUtil::Handle<Operation> OperationPtr; + +} + +#endif |