You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by an...@locus.apache.org on 2000/10/21 00:03:10 UTC

cvs commit: xml-xerces/c/src/dom DOM_NodeFilter.hpp

andyh       00/10/20 15:03:09

  Modified:    c/src/dom DOM_NodeFilter.hpp
  Log:
  DOM NodeFileter - define values for FilterAction enum to match those in the DOM spec.
  
  Revision  Changes    Path
  1.10      +7 -1      xml-xerces/c/src/dom/DOM_NodeFilter.hpp
  
  Index: DOM_NodeFilter.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/dom/DOM_NodeFilter.hpp,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- DOM_NodeFilter.hpp	2000/05/11 00:07:38	1.9
  +++ DOM_NodeFilter.hpp	2000/10/20 22:03:04	1.10
  @@ -56,6 +56,9 @@
   
   /*
    * $Log: DOM_NodeFilter.hpp,v $
  + * Revision 1.10  2000/10/20 22:03:04  andyh
  + * DOM NodeFileter - define values for FilterAction enum to match those in the DOM spec.
  + *
    * Revision 1.9  2000/05/11 00:07:38  abagchi
    * Removed tables. It was confusing doxygen
    *
  @@ -152,7 +155,10 @@
   	  *		</table>
         *
   	  */
  -        enum FilterAction {FILTER_ACCEPT, FILTER_REJECT, FILTER_SKIP};
  +        enum FilterAction {FILTER_ACCEPT = 1,
  +                           FILTER_REJECT = 2,
  +                           FILTER_SKIP   = 3};
  +
           enum ShowType {
               SHOW_ALL                       = 0x0000FFFF,
               SHOW_ELEMENT                   = 0x00000001,