You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by sa...@apache.org on 2006/05/02 11:16:35 UTC

svn commit: r398875 - in /webservices/axis2/trunk/c: include/axis2_util.h samples/user_guide/clients/echo_blocking.c

Author: samisa
Date: Tue May  2 02:16:17 2006
New Revision: 398875

URL: http://svn.apache.org/viewcvs?rev=398875&view=rev
Log:
Added util header

Added:
    webservices/axis2/trunk/c/include/axis2_util.h   (with props)
Modified:
    webservices/axis2/trunk/c/samples/user_guide/clients/echo_blocking.c

Added: webservices/axis2/trunk/c/include/axis2_util.h
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/include/axis2_util.h?rev=398875&view=auto
==============================================================================
--- webservices/axis2/trunk/c/include/axis2_util.h (added)
+++ webservices/axis2/trunk/c/include/axis2_util.h Tue May  2 02:16:17 2006
@@ -0,0 +1,61 @@
+/*
+ * Copyright 2004,2005 The Apache Software Foundation.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#ifndef AXIS2_UTIL_H
+#define AXIS2_UTIL_H
+
+#include <axis2_allocator.h>
+#include <axis2_array_list.h>
+#include <axis2_class_loader.h>
+#include <axis2_dir_handler.h>
+#include <axis2_dll_desc.h>
+#include <axis2_env.h>
+#include <axis2_error.h>
+#include <axis2_file.h>
+#include <axis2_file_diff.h>
+#include <axis2_file_handler.h>
+#include <axis2_hash.h>
+#include <axis2_linked_list.h>
+#include <axis2_log.h>
+#include <axis2_network_handler.h>
+#include <axis2_param.h>
+#include <axis2_param_container.h>
+#include <axis2_property.h>
+#include <axis2_qname.h>
+#include <axis2_stack.h>
+#include <axis2_stream.h>
+#include <axis2_string.h>
+#include <axis2_string_util.h>
+#include <axis2_thread_pool.h>
+#include <axis2_types.h>
+#include <axis2_url.h>
+#include <axis2_utils.h>
+#include <axis2_uuid_gen.h>
+#include <platforms/axis2_platform_auto_sense.h>
+
+#ifdef __cplusplus
+extern "C"
+{
+#endif
+
+/** @} */
+    
+#ifdef __cplusplus
+}
+#endif
+
+#endif                          /* AXIS2_UTIL_H */
+

Propchange: webservices/axis2/trunk/c/include/axis2_util.h
------------------------------------------------------------------------------
    svn:executable = *

Modified: webservices/axis2/trunk/c/samples/user_guide/clients/echo_blocking.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/samples/user_guide/clients/echo_blocking.c?rev=398875&r1=398874&r2=398875&view=diff
==============================================================================
--- webservices/axis2/trunk/c/samples/user_guide/clients/echo_blocking.c (original)
+++ webservices/axis2/trunk/c/samples/user_guide/clients/echo_blocking.c Tue May  2 02:16:17 2006
@@ -16,12 +16,9 @@
 
 #include <axis2_call.h>
 #include <axis2_om.h>
-#include <axis2_stream.h>
-#include <axis2_log_default.h>
-#include <axis2_error_default.h>
+#include <axis2_util.h>
 #include <stdio.h>
 #include <axis2_soap.h>
-#include <platforms/axis2_platform_auto_sense.h>
 
 axis2_om_node_t *
 build_om_programatically(axis2_env_t **env);