Author: senaka Date: Tue Mar 4 06:27:02 2008 New Revision: 633483 URL: http://svn.apache.org/viewvc?rev=633483&view=rev Log: Removing dependency in util to axiom
Added: webservices/axis2/trunk/c/axiom/include/axiom_defines.h Modified: webservices/axis2/trunk/c/axiom/include/axiom.h webservices/axis2/trunk/c/axiom/include/axiom_xml_reader.h webservices/axis2/trunk/c/axiom/include/axiom_xml_writer.h webservices/axis2/trunk/c/util/include/axutil_utils_defines.h Modified: webservices/axis2/trunk/c/axiom/include/axiom.h URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/axiom/include/axiom.h?rev=633483&r1=633482&r2=633483&view=diff ============================================================================== --- webservices/axis2/trunk/c/axiom/include/axiom.h (original) +++ webservices/axis2/trunk/c/axiom/include/axiom.h Tue Mar 4 06:27:02 2008 @@ -37,6 +37,7 @@ #include <axiom_data_source.h> #include <axiom_xml_reader.h> #include <axiom_xml_writer.h> +#include <axiom_defines.h> /** * @file axiom.h Added: webservices/axis2/trunk/c/axiom/include/axiom_defines.h URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/axiom/include/axiom_defines.h?rev=633483&view=auto ============================================================================== --- webservices/axis2/trunk/c/axiom/include/axiom_defines.h (added) +++ webservices/axis2/trunk/c/axiom/include/axiom_defines.h Tue Mar 4 06:27:02 2008 @@ -0,0 +1,40 @@ + +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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 AXIOM_DEFINES_H +#define AXIOM_DEFINES_H + +#ifdef __cplusplus +extern "C" +{ +#endif + + /** + * This enum is used to decide the type of storage used + */ + typedef enum _axis2_xml_parser_type + { + AXIS2_XML_PARSER_TYPE_BUFFER = 1, + AXIS2_XML_PARSER_TYPE_FILE, + AXIS2_XML_PARSER_TYPE_DOC + } axis2_xml_parser_type; + +#ifdef __cplusplus +} +#endif +#endif /* AXIOM_DEFINES_H */ Modified: webservices/axis2/trunk/c/axiom/include/axiom_xml_reader.h URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/axiom/include/axiom_xml_reader.h?rev=633483&r1=633482&r2=633483&view=diff ============================================================================== --- webservices/axis2/trunk/c/axiom/include/axiom_xml_reader.h (original) +++ webservices/axis2/trunk/c/axiom/include/axiom_xml_reader.h Tue Mar 4 06:27:02 2008 @@ -26,6 +26,7 @@ #include <axutil_env.h> #include <axutil_utils.h> +#include <axiom_defines.h> #ifdef __cplusplus extern "C" Modified: webservices/axis2/trunk/c/axiom/include/axiom_xml_writer.h URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/axiom/include/axiom_xml_writer.h?rev=633483&r1=633482&r2=633483&view=diff ============================================================================== --- webservices/axis2/trunk/c/axiom/include/axiom_xml_writer.h (original) +++ webservices/axis2/trunk/c/axiom/include/axiom_xml_writer.h Tue Mar 4 06:27:02 2008 @@ -25,6 +25,7 @@ */ #include <axutil_env.h> +#include <axiom_defines.h> #ifdef __cplusplus extern "C" Modified: webservices/axis2/trunk/c/util/include/axutil_utils_defines.h URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/util/include/axutil_utils_defines.h?rev=633483&r1=633482&r2=633483&view=diff ============================================================================== --- webservices/axis2/trunk/c/util/include/axutil_utils_defines.h (original) +++ webservices/axis2/trunk/c/util/include/axutil_utils_defines.h Tue Mar 4 06:27:02 2008 @@ -208,16 +208,6 @@ #define AXIS2_DECLARE_DATA #endif - /** - * This enum is used to decide the type of storage used - */ - typedef enum _axis2_xml_parser_type - { - AXIS2_XML_PARSER_TYPE_BUFFER = 1, - AXIS2_XML_PARSER_TYPE_FILE, - AXIS2_XML_PARSER_TYPE_DOC - } axis2_xml_parser_type; - #ifdef __cplusplus } #endif --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]