summaryrefslogtreecommitdiff
path: root/php/src/IcePHP/Logger.h
diff options
context:
space:
mode:
authorMark Spruiell <mes@zeroc.com>2009-06-23 17:47:58 -0700
committerMark Spruiell <mes@zeroc.com>2009-06-23 17:47:58 -0700
commita2e794a1366fcd71f04496c206869ffa158547ac (patch)
tree4c9d6554f3dc658aeaa76892aeecfc3d7eb56b61 /php/src/IcePHP/Logger.h
parentAdd x64 configurations to C++ projects (diff)
downloadice-a2e794a1366fcd71f04496c206869ffa158547ac.tar.bz2
ice-a2e794a1366fcd71f04496c206869ffa158547ac.tar.xz
ice-a2e794a1366fcd71f04496c206869ffa158547ac.zip
PHP changes:
- static translation - more traditional language mapping (multiple communicators, etc.) - support for registered (persistent) communicators - support for PHP namespaces (PHP 5.3 or later)
Diffstat (limited to 'php/src/IcePHP/Logger.h')
-rw-r--r--php/src/IcePHP/Logger.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/php/src/IcePHP/Logger.h b/php/src/IcePHP/Logger.h
new file mode 100644
index 00000000000..e2eb76937bb
--- /dev/null
+++ b/php/src/IcePHP/Logger.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_LOGGER_H
+#define ICEPHP_LOGGER_H
+
+#include <Config.h>
+
+namespace IcePHP
+{
+
+bool loggerInit(TSRMLS_D);
+
+bool createLogger(zval*, const Ice::LoggerPtr& TSRMLS_DC);
+bool fetchLogger(zval*, Ice::LoggerPtr& TSRMLS_DC);
+
+//
+// Class entry.
+//
+extern zend_class_entry* loggerClassEntry;
+
+} // End of namespace IcePHP
+
+#endif