You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by pe...@apache.org on 2001/11/22 21:23:20 UTC

cvs commit: xml-xerces/c/src/validators/datatype StringDatatypeValidator.hpp ListDatatypeValidator.hpp IDREFDatatypeValidator.hpp IDDatatypeValidator.hpp ENTITYDatatypeValidator.hpp DecimalDatatypeValidator.hpp AnyURIDatatypeValidator.hpp AbstractStringValidator.hpp AbstractNumericValidator.hpp AbstractNumericFacetValidator.hpp

peiyongz    01/11/22 12:23:20

  Modified:    c/src/validators/datatype StringDatatypeValidator.hpp
                        ListDatatypeValidator.hpp
                        IDREFDatatypeValidator.hpp IDDatatypeValidator.hpp
                        ENTITYDatatypeValidator.hpp
                        DecimalDatatypeValidator.hpp
                        AnyURIDatatypeValidator.hpp
                        AbstractStringValidator.hpp
                        AbstractNumericValidator.hpp
                        AbstractNumericFacetValidator.hpp
  Log:
  _declspec(dllimport) and inline warning C4273
  
  Revision  Changes    Path
  1.10      +5 -2      xml-xerces/c/src/validators/datatype/StringDatatypeValidator.hpp
  
  Index: StringDatatypeValidator.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/validators/datatype/StringDatatypeValidator.hpp,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- StringDatatypeValidator.hpp	2001/10/09 20:54:48	1.9
  +++ StringDatatypeValidator.hpp	2001/11/22 20:23:20	1.10
  @@ -55,8 +55,11 @@
    */
   
   /*
  - * $Id: StringDatatypeValidator.hpp,v 1.9 2001/10/09 20:54:48 peiyongz Exp $
  + * $Id: StringDatatypeValidator.hpp,v 1.10 2001/11/22 20:23:20 peiyongz Exp $
    * $Log: StringDatatypeValidator.hpp,v $
  + * Revision 1.10  2001/11/22 20:23:20  peiyongz
  + * _declspec(dllimport) and inline warning C4273
  + *
    * Revision 1.9  2001/10/09 20:54:48  peiyongz
    * init(): removed
    *
  @@ -153,7 +156,7 @@
   // -----------------------------------------------------------------------
   // Getter methods
   // -----------------------------------------------------------------------
  -void StringDatatypeValidator::setWhiteSpace(short newValue)
  +inline void StringDatatypeValidator::setWhiteSpace(short newValue)
   {
       fWhiteSpace = newValue;
   }
  
  
  
  1.11      +7 -3      xml-xerces/c/src/validators/datatype/ListDatatypeValidator.hpp
  
  Index: ListDatatypeValidator.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/validators/datatype/ListDatatypeValidator.hpp,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- ListDatatypeValidator.hpp	2001/11/15 16:08:15	1.10
  +++ ListDatatypeValidator.hpp	2001/11/22 20:23:20	1.11
  @@ -55,8 +55,11 @@
    */
   
   /*
  - * $Id: ListDatatypeValidator.hpp,v 1.10 2001/11/15 16:08:15 peiyongz Exp $
  + * $Id: ListDatatypeValidator.hpp,v 1.11 2001/11/22 20:23:20 peiyongz Exp $
    * $Log: ListDatatypeValidator.hpp,v $
  + * Revision 1.11  2001/11/22 20:23:20  peiyongz
  + * _declspec(dllimport) and inline warning C4273
  + *
    * Revision 1.10  2001/11/15 16:08:15  peiyongz
    * checkContent() made virtual to allow ListDTV participate in the building of
    * its own (in AbstractStringValidator's init())
  @@ -230,7 +233,7 @@
   // -----------------------------------------------------------------------
   // Getter methods
   // -----------------------------------------------------------------------
  -const XMLCh* const ListDatatypeValidator::getContent() const
  +inline const XMLCh* const ListDatatypeValidator::getContent() const
   {
       return fContent;
   }
  @@ -238,7 +241,7 @@
   // -----------------------------------------------------------------------
   // Setter methods
   // -----------------------------------------------------------------------
  -void ListDatatypeValidator::setContent(const XMLCh* const content)
  +inline void ListDatatypeValidator::setContent(const XMLCh* const content)
   {
       fContent = content;
   }
  
  
  
  1.8       +5 -2      xml-xerces/c/src/validators/datatype/IDREFDatatypeValidator.hpp
  
  Index: IDREFDatatypeValidator.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/validators/datatype/IDREFDatatypeValidator.hpp,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- IDREFDatatypeValidator.hpp	2001/10/09 20:49:38	1.7
  +++ IDREFDatatypeValidator.hpp	2001/11/22 20:23:20	1.8
  @@ -55,8 +55,11 @@
    */
   
   /*
  - * $Id: IDREFDatatypeValidator.hpp,v 1.7 2001/10/09 20:49:38 peiyongz Exp $
  + * $Id: IDREFDatatypeValidator.hpp,v 1.8 2001/11/22 20:23:20 peiyongz Exp $
    * $Log: IDREFDatatypeValidator.hpp,v $
  + * Revision 1.8  2001/11/22 20:23:20  peiyongz
  + * _declspec(dllimport) and inline warning C4273
  + *
    * Revision 1.7  2001/10/09 20:49:38  peiyongz
    * init(): take 1 arg
    *
  @@ -166,7 +169,7 @@
   // -----------------------------------------------------------------------
   // Validation methods
   // -----------------------------------------------------------------------
  -void IDREFDatatypeValidator::setIDRefList(RefHashTableOf<XMLRefInfo>* newIDRefList)
  +inline void IDREFDatatypeValidator::setIDRefList(RefHashTableOf<XMLRefInfo>* newIDRefList)
   {
       fIDRefList = newIDRefList;
   }
  
  
  
  1.8       +5 -2      xml-xerces/c/src/validators/datatype/IDDatatypeValidator.hpp
  
  Index: IDDatatypeValidator.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/validators/datatype/IDDatatypeValidator.hpp,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- IDDatatypeValidator.hpp	2001/10/09 20:50:02	1.7
  +++ IDDatatypeValidator.hpp	2001/11/22 20:23:20	1.8
  @@ -55,8 +55,11 @@
    */
   
   /*
  - * $Id: IDDatatypeValidator.hpp,v 1.7 2001/10/09 20:50:02 peiyongz Exp $
  + * $Id: IDDatatypeValidator.hpp,v 1.8 2001/11/22 20:23:20 peiyongz Exp $
    * $Log: IDDatatypeValidator.hpp,v $
  + * Revision 1.8  2001/11/22 20:23:20  peiyongz
  + * _declspec(dllimport) and inline warning C4273
  + *
    * Revision 1.7  2001/10/09 20:50:02  peiyongz
    * init(): take 1 arg
    *
  @@ -165,7 +168,7 @@
       RefHashTableOf<XMLRefInfo>* fIDRefList;
   };
   
  -void IDDatatypeValidator::setIDRefList(RefHashTableOf<XMLRefInfo>* newIDRefList)
  +inline void IDDatatypeValidator::setIDRefList(RefHashTableOf<XMLRefInfo>* newIDRefList)
   {
       fIDRefList = newIDRefList;
   }
  
  
  
  1.7       +5 -2      xml-xerces/c/src/validators/datatype/ENTITYDatatypeValidator.hpp
  
  Index: ENTITYDatatypeValidator.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/validators/datatype/ENTITYDatatypeValidator.hpp,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- ENTITYDatatypeValidator.hpp	2001/10/09 20:50:27	1.6
  +++ ENTITYDatatypeValidator.hpp	2001/11/22 20:23:20	1.7
  @@ -55,8 +55,11 @@
    */
   
   /*
  - * $Id: ENTITYDatatypeValidator.hpp,v 1.6 2001/10/09 20:50:27 peiyongz Exp $
  + * $Id: ENTITYDatatypeValidator.hpp,v 1.7 2001/11/22 20:23:20 peiyongz Exp $
    * $Log: ENTITYDatatypeValidator.hpp,v $
  + * Revision 1.7  2001/11/22 20:23:20  peiyongz
  + * _declspec(dllimport) and inline warning C4273
  + *
    * Revision 1.6  2001/10/09 20:50:27  peiyongz
    * init(): take 1 arg
    *
  @@ -186,7 +189,7 @@
   // -----------------------------------------------------------------------
   // Setter methods
   // -----------------------------------------------------------------------
  -void ENTITYDatatypeValidator::setEntityDeclPool(NameIdPool<DTDEntityDecl>* const entityDeclPool)
  +inline void ENTITYDatatypeValidator::setEntityDeclPool(NameIdPool<DTDEntityDecl>* const entityDeclPool)
   {
       fEntityDeclPool = entityDeclPool;
   }
  
  
  
  1.10      +8 -5      xml-xerces/c/src/validators/datatype/DecimalDatatypeValidator.hpp
  
  Index: DecimalDatatypeValidator.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/validators/datatype/DecimalDatatypeValidator.hpp,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- DecimalDatatypeValidator.hpp	2001/10/09 20:52:43	1.9
  +++ DecimalDatatypeValidator.hpp	2001/11/22 20:23:20	1.10
  @@ -55,8 +55,11 @@
    */
   
   /*
  - * $Id: DecimalDatatypeValidator.hpp,v 1.9 2001/10/09 20:52:43 peiyongz Exp $
  + * $Id: DecimalDatatypeValidator.hpp,v 1.10 2001/11/22 20:23:20 peiyongz Exp $
    * $Log: DecimalDatatypeValidator.hpp,v $
  + * Revision 1.10  2001/11/22 20:23:20  peiyongz
  + * _declspec(dllimport) and inline warning C4273
  + *
    * Revision 1.9  2001/10/09 20:52:43  peiyongz
    * init():removed
    *
  @@ -194,12 +197,12 @@
   // Getter methods
   // -----------------------------------------------------------------------
   
  -unsigned int DecimalDatatypeValidator::getTotalDigits() const
  +inline unsigned int DecimalDatatypeValidator::getTotalDigits() const
   {
       return fTotalDigits;
   }
   
  -unsigned int DecimalDatatypeValidator::getFractionDigits() const
  +inline unsigned int DecimalDatatypeValidator::getFractionDigits() const
   {
       return fFractionDigits;
   }
  @@ -208,12 +211,12 @@
   // Setter methods
   // -----------------------------------------------------------------------
   
  -void DecimalDatatypeValidator::setTotalDigits(unsigned int newTotalDigits)
  +inline void DecimalDatatypeValidator::setTotalDigits(unsigned int newTotalDigits)
   {
       fTotalDigits = newTotalDigits;
   }
   
  -void DecimalDatatypeValidator::setFractionDigits(unsigned int newFractionDigits)
  +inline void DecimalDatatypeValidator::setFractionDigits(unsigned int newFractionDigits)
   {
       fFractionDigits = newFractionDigits;
   }
  
  
  
  1.8       +5 -2      xml-xerces/c/src/validators/datatype/AnyURIDatatypeValidator.hpp
  
  Index: AnyURIDatatypeValidator.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/validators/datatype/AnyURIDatatypeValidator.hpp,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- AnyURIDatatypeValidator.hpp	2001/09/24 15:33:15	1.7
  +++ AnyURIDatatypeValidator.hpp	2001/11/22 20:23:20	1.8
  @@ -55,8 +55,11 @@
    */
   
   /*
  - * $Id: AnyURIDatatypeValidator.hpp,v 1.7 2001/09/24 15:33:15 peiyongz Exp $
  + * $Id: AnyURIDatatypeValidator.hpp,v 1.8 2001/11/22 20:23:20 peiyongz Exp $
    * $Log: AnyURIDatatypeValidator.hpp,v $
  + * Revision 1.8  2001/11/22 20:23:20  peiyongz
  + * _declspec(dllimport) and inline warning C4273
  + *
    * Revision 1.7  2001/09/24 15:33:15  peiyongz
    * DTV Reorganization: virtual methods moved to *.cpp
    *
  @@ -150,7 +153,7 @@
   
   };
   
  -void AnyURIDatatypeValidator::cleanUp()
  +inline void AnyURIDatatypeValidator::cleanUp()
   {
       if (fTempURI)
       {
  
  
  
  1.8       +13 -9     xml-xerces/c/src/validators/datatype/AbstractStringValidator.hpp
  
  Index: AbstractStringValidator.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/validators/datatype/AbstractStringValidator.hpp,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- AbstractStringValidator.hpp	2001/11/15 16:08:15	1.7
  +++ AbstractStringValidator.hpp	2001/11/22 20:23:20	1.8
  @@ -55,8 +55,11 @@
    */
   
   /*
  - * $Id: AbstractStringValidator.hpp,v 1.7 2001/11/15 16:08:15 peiyongz Exp $
  + * $Id: AbstractStringValidator.hpp,v 1.8 2001/11/22 20:23:20 peiyongz Exp $
    * $Log: AbstractStringValidator.hpp,v $
  + * Revision 1.8  2001/11/22 20:23:20  peiyongz
  + * _declspec(dllimport) and inline warning C4273
  + *
    * Revision 1.7  2001/11/15 16:08:15  peiyongz
    * checkContent() made virtual to allow ListDTV participate in the building of
    * its own (in AbstractStringValidator's init())
  @@ -215,22 +218,22 @@
   // Getter methods
   // -----------------------------------------------------------------------
   
  -unsigned int AbstractStringValidator::getLength() const
  +inline unsigned int AbstractStringValidator::getLength() const
   {
       return fLength;
   }
   
  -unsigned int AbstractStringValidator::getMaxLength() const
  +inline unsigned int AbstractStringValidator::getMaxLength() const
   {
       return fMaxLength;
   }
   
  -unsigned int AbstractStringValidator::getMinLength() const
  +inline unsigned int AbstractStringValidator::getMinLength() const
   {
       return fMinLength;
   }
   
  -RefVectorOf<XMLCh>* AbstractStringValidator:: getEnumeration() const
  +inline RefVectorOf<XMLCh>* AbstractStringValidator:: getEnumeration() const
   {
       return fEnumeration;
   }
  @@ -239,22 +242,22 @@
   // Setter methods
   // -----------------------------------------------------------------------
   
  -void AbstractStringValidator::setLength(unsigned int newLength)
  +inline void AbstractStringValidator::setLength(unsigned int newLength)
   {
       fLength = newLength;
   }
   
  -void AbstractStringValidator::setMaxLength(unsigned int newMaxLength)
  +inline void AbstractStringValidator::setMaxLength(unsigned int newMaxLength)
   {
       fMaxLength = newMaxLength;
   }
   
  -void AbstractStringValidator::setMinLength(unsigned int newMinLength)
  +inline void AbstractStringValidator::setMinLength(unsigned int newMinLength)
   {
       fMinLength = newMinLength;
   }
   
  -void AbstractStringValidator::setEnumeration(RefVectorOf<XMLCh>* enums
  +inline void AbstractStringValidator::setEnumeration(RefVectorOf<XMLCh>* enums
                                              , bool                inherited)
   {
       if (enums)
  
  
  
  1.2       +6 -3      xml-xerces/c/src/validators/datatype/AbstractNumericValidator.hpp
  
  Index: AbstractNumericValidator.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/validators/datatype/AbstractNumericValidator.hpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- AbstractNumericValidator.hpp	2001/10/01 16:13:56	1.1
  +++ AbstractNumericValidator.hpp	2001/11/22 20:23:20	1.2
  @@ -55,8 +55,11 @@
    */
   
   /*
  - * $Id: AbstractNumericValidator.hpp,v 1.1 2001/10/01 16:13:56 peiyongz Exp $
  + * $Id: AbstractNumericValidator.hpp,v 1.2 2001/11/22 20:23:20 peiyongz Exp $
    * $Log: AbstractNumericValidator.hpp,v $
  + * Revision 1.2  2001/11/22 20:23:20  peiyongz
  + * _declspec(dllimport) and inline warning C4273
  + *
    * Revision 1.1  2001/10/01 16:13:56  peiyongz
    * DTV Reorganization:new classes: AbstractNumericFactValidator/ AbstractNumericValidator
    *
  @@ -111,7 +114,7 @@
   
   };
   
  -void AbstractNumericValidator::init(RefVectorOf<XMLCh>*  const enums)
  +inline void AbstractNumericValidator::init(RefVectorOf<XMLCh>*  const enums)
   {
       AbstractNumericFacetValidator::init(enums);
   }
  
  
  
  1.3       +9 -6      xml-xerces/c/src/validators/datatype/AbstractNumericFacetValidator.hpp
  
  Index: AbstractNumericFacetValidator.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/validators/datatype/AbstractNumericFacetValidator.hpp,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- AbstractNumericFacetValidator.hpp	2001/11/12 20:37:57	1.2
  +++ AbstractNumericFacetValidator.hpp	2001/11/22 20:23:20	1.3
  @@ -55,8 +55,11 @@
    */
   
   /*
  - * $Id: AbstractNumericFacetValidator.hpp,v 1.2 2001/11/12 20:37:57 peiyongz Exp $
  + * $Id: AbstractNumericFacetValidator.hpp,v 1.3 2001/11/22 20:23:20 peiyongz Exp $
    * $Log: AbstractNumericFacetValidator.hpp,v $
  + * Revision 1.3  2001/11/22 20:23:20  peiyongz
  + * _declspec(dllimport) and inline warning C4273
  + *
    * Revision 1.2  2001/11/12 20:37:57  peiyongz
    * SchemaDateTimeException defined
    *
  @@ -179,27 +182,27 @@
   // Getter methods
   // -----------------------------------------------------------------------
   
  -XMLNumber* const AbstractNumericFacetValidator::getMaxInclusive() const
  +inline XMLNumber* const AbstractNumericFacetValidator::getMaxInclusive() const
   {
       return fMaxInclusive;
   }
   
  -XMLNumber* const AbstractNumericFacetValidator::getMaxExclusive() const
  +inline XMLNumber* const AbstractNumericFacetValidator::getMaxExclusive() const
   {
       return fMaxExclusive;
   }
   
  -XMLNumber* const AbstractNumericFacetValidator::getMinInclusive() const
  +inline XMLNumber* const AbstractNumericFacetValidator::getMinInclusive() const
   {
       return fMinInclusive;
   }
   
  -XMLNumber* const AbstractNumericFacetValidator::getMinExclusive() const
  +inline XMLNumber* const AbstractNumericFacetValidator::getMinExclusive() const
   {
       return fMinExclusive;
   }
   
  -RefVectorOf<XMLNumber>* AbstractNumericFacetValidator::getEnumeration() const
  +inline RefVectorOf<XMLNumber>* AbstractNumericFacetValidator::getEnumeration() const
   {
       return fEnumeration;
   }
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: xerces-cvs-unsubscribe@xml.apache.org
For additional commands, e-mail: xerces-cvs-help@xml.apache.org