diff options
Diffstat (limited to 'php/src/IcePHP/Endpoint.h')
-rw-r--r-- | php/src/IcePHP/Endpoint.h | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/php/src/IcePHP/Endpoint.h b/php/src/IcePHP/Endpoint.h new file mode 100644 index 00000000000..dbf1556bb99 --- /dev/null +++ b/php/src/IcePHP/Endpoint.h @@ -0,0 +1,30 @@ +// ********************************************************************** +// +// Copyright (c) 2003-2009 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_ENDPOINT_H +#define ICEPHP_ENDPOINT_H + +#include <Config.h> + +namespace IcePHP +{ + +bool endpointInit(TSRMLS_D); + +bool createEndpoint(zval*, const Ice::EndpointPtr& TSRMLS_DC); +bool fetchEndpoint(zval*, Ice::EndpointPtr& TSRMLS_DC); + +// +// Class entry. +// +extern zend_class_entry* endpointClassEntry; + +} // End of namespace IcePHP + +#endif |