home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / cset21v1.zip / IBMCPP / IBMCLASS / IDBCSBUF.INL < prev    next >
Text File  |  1993-10-22  |  2KB  |  42 lines

  1. #ifndef _IDBCSBUF_INL_
  2. #define _IDBCSBUF_INL_ 0
  3. /*******************************************************************************
  4. * FILE NAME: idbcsbuf.inl                                                      *
  5. *                                                                              *
  6. * DESCRIPTION:                                                                 *
  7. *   This file contains the definition of the inline functions for the          *
  8. *   class(es) declared in idbcsbuf.hpp.                                        *
  9. *                                                                              *
  10. * COPYRIGHT:                                                                   *
  11. *   Licensed Materials - Property of IBM                                       *
  12. *   (C) Copyright IBM Corporation 1992, 1993                                   *
  13. *   All Rights Reserved                                                        *
  14. *   US Government Users Restricted Rights - Use, duplication, or               *
  15. *   disclosure                                                                 *
  16. *   restricted by GSA ADP Schedule Contract with IBM Corp.                     *
  17. *                                                                              *
  18. *******************************************************************************/
  19. #ifndef _IDBCSBUF_
  20.   #undef  _IDBCSBUF_INL_
  21.   #define _IDBCSBUF_INL_ 1
  22.   #include <idbcsbuf.hpp>
  23. #endif
  24.  
  25. #if _IDBCSBUF_INL_
  26.   #define inline
  27. #endif
  28.  
  29. inline IBase::Boolean IDBCSBuffer :: isDBCS1 ( unsigned pos ) const
  30.   {
  31.   return dbcsTable[ (unsigned) ( this->contents()[ pos-1 ] ) ];
  32.   }
  33.  
  34. inline IBase::Boolean IDBCSBuffer :: isPrevDBCS ( unsigned pos ) const
  35.   {
  36.   return ( pos < 3 ) ?
  37.     false
  38.   :
  39.     this->charType( pos-1 ) == IStringEnum::dbcs2;
  40.   }
  41. #endif // _IDBCSBUF_INL_
  42.