You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by sa...@apache.org on 2004/10/11 10:30:18 UTC

cvs commit: ws-axis/c/include/axis/server TypeMapping.h AxisUserAPI.h

samisa      2004/10/11 01:30:18

  Modified:    c/include/axis/server TypeMapping.h AxisUserAPI.h
  Log:
  Added XSD NCName support
  
  Revision  Changes    Path
  1.17      +1 -1      ws-axis/c/include/axis/server/TypeMapping.h
  
  Index: TypeMapping.h
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/include/axis/server/TypeMapping.h,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -r1.16 -r1.17
  --- TypeMapping.h	8 Sep 2004 10:58:39 -0000	1.16
  +++ TypeMapping.h	11 Oct 2004 08:30:17 -0000	1.17
  @@ -33,7 +33,7 @@
                   XSD_DATETIME, XSD_TIME, XSD_DATE, \
                   XSD_YEARMONTH, XSD_YEAR, XSD_MONTHDAY, XSD_DAY, \
                   XSD_MONTH, XSD_HEXBINARY, \
  -                XSD_BASE64BINARY, XSD_ANYURI, XSD_QNAME, XSD_NOTATION, \
  +                XSD_BASE64BINARY, XSD_ANYURI, XSD_QNAME, XSD_NCNAME, XSD_NOTATION, \
                   XSD_INTEGER, \
                   XSD_ARRAY, USER_TYPE, ACCESSOR, XSD_NMTOKEN, XSD_ANY
   } XSDTYPE;
  
  
  
  1.17      +6 -0      ws-axis/c/include/axis/server/AxisUserAPI.h
  
  Index: AxisUserAPI.h
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/include/axis/server/AxisUserAPI.h,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -r1.16 -r1.17
  --- AxisUserAPI.h	20 Sep 2004 09:35:15 -0000	1.16
  +++ AxisUserAPI.h	11 Oct 2004 08:30:17 -0000	1.17
  @@ -86,6 +86,11 @@
    */
   typedef AxisChar * xsd__QName;
   /**
  + * @typedef xsd__NCName
  + * Axis C++ defined type for xml basic type NCName
  + */
  +typedef AxisChar * xsd__NCName;
  +/**
    * @typedef xsd__dateTime
    * Axis C++ defined type for xml basic type dateTime
    */
  @@ -174,6 +179,7 @@
   typedef AXIS_DEFINED_ARRAY(xsd__double) xsd__double_Array;
   typedef AXIS_DEFINED_ARRAY(xsd__boolean) xsd__boolean_Array;
   typedef AXIS_DEFINED_ARRAY(xsd__QName) xsd__QName_Array;
  +typedef AXIS_DEFINED_ARRAY(xsd__NCName) xsd__NCName_Array;
   typedef AXIS_DEFINED_ARRAY(xsd__dateTime) xsd__dateTime_Array;
   typedef AXIS_DEFINED_ARRAY(xsd__unsignedByte) xsd__unsignedByte_Array;
   typedef AXIS_DEFINED_ARRAY(xsd__unsignedInt) xsd__unsignedInt_Array;