SBjsiString.hpp
上传用户:xqtpzdz
上传日期:2022-05-21
资源大小:1764k
文件大小:2k
源码类别:

xml/soap/webservice

开发平台:

Visual C++

  1. /*****************************************************************************
  2.  *****************************************************************************
  3.  *
  4.  * SBinetString, string class that is a subset of STL wstring
  5.  *
  6.  * The SBinetString class stores a string in a grow-only buffer, a
  7.  * functional subset of the STL wstring class. This header merely
  8.  * exists to make it easy to eliminate the use of STL wstring which
  9.  * does not exist on some Linux versions.
  10.  *
  11.  *****************************************************************************
  12.  ****************************************************************************/
  13. /****************License************************************************
  14.  * Vocalocity OpenVXI
  15.  * Copyright (C) 2004-2005 by Vocalocity, Inc. All Rights Reserved.
  16.  * This program is free software; you can redistribute it and/or
  17.  * modify it under the terms of the GNU General Public License
  18.  * as published by the Free Software Foundation; either version 2
  19.  * of the License, or (at your option) any later version.
  20.  *  
  21.  * This program is distributed in the hope that it will be useful,
  22.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  23.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  24.  * GNU General Public License for more details.
  25.  *
  26.  * You should have received a copy of the GNU General Public License
  27.  * along with this program; if not, write to the Free Software
  28.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  29.  * Vocalocity, the Vocalocity logo, and VocalOS are trademarks or 
  30.  * registered trademarks of Vocalocity, Inc. 
  31.  * OpenVXI is a trademark of Scansoft, Inc. and used under license 
  32.  * by Vocalocity.
  33.  ***********************************************************************/
  34. // -----1=0-------2=0-------3=0-------4=0-------5=0-------6=0-------7=0-------8
  35. #ifndef _SBINET_STRING_H__
  36. #define _SBINET_STRING_H__
  37. #include "SBjsiInternal.h"
  38. #include "VXItypes.h"
  39. // Utility method for end users to convert wide to narrow characters
  40. // (characters that cannot be converted become a Latin-1 upside down ?
  41. // character), not used here
  42. inline char SBinetW2C(wchar_t w)
  43. {
  44.   return ((w & 0xff00)?'277':((unsigned char) (w & 0x00ff)));
  45. }
  46. #ifdef NO_STL
  47. #include "SBjsiStringNoSTL.hpp"
  48. #else
  49. #include "SBjsiStringSTL.hpp"
  50. #endif
  51. #endif  /* include guard */