diff options
author | Rüdiger Timm <rt@openoffice.org> | 2008-07-02 09:04:10 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2008-07-02 09:04:10 +0000 |
commit | 1d8361d5d52b92de62a1cb3f5f3935c2e1d07cb6 (patch) | |
tree | 960c72a892f2bc2e9dde9fa47a77f589ee83217f /basic | |
parent | 3b50ad9a54fd4d01a2a0db210c647a612cb9e1f5 (diff) |
INTEGRATION: CWS npower10 (1.4.132); FILE MERGED
2008/05/07 07:10:32 pflin 1.4.132.2: RESYNC: (1.4-1.5); FILE MERGED
2008/01/07 06:45:49 pflin 1.4.132.1: Issue number: #i84407#
Submitted by: pflin
Reviewed by: npower
Support the conversion between string and byte array
Diffstat (limited to 'basic')
-rw-r--r-- | basic/source/sbx/sbxconv.hxx | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/basic/source/sbx/sbxconv.hxx b/basic/source/sbx/sbxconv.hxx index 55f62553df7f..55eaa8c96054 100644 --- a/basic/source/sbx/sbxconv.hxx +++ b/basic/source/sbx/sbxconv.hxx @@ -7,7 +7,7 @@ * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: sbxconv.hxx,v $ - * $Revision: 1.5 $ + * $Revision: 1.6 $ * * This file is part of OpenOffice.org. * @@ -33,6 +33,8 @@ #include "sbxdec.hxx" +class SbxArray; + // SBXSCAN.CXX extern void ImpCvtNum( double nNum, short nPrec, String& rRes, BOOL bCoreString=FALSE ); extern SbxError ImpScan @@ -145,4 +147,8 @@ void ImpPutULong( SbxValues*, UINT32 ); enum SbxBOOL ImpGetBool( const SbxValues* ); void ImpPutBool( SbxValues*, INT16 ); +// ByteArry <--> String +SbxArray* StringToByteArray(const String& rStr); +String ByteArrayToString(SbxArray* pArr); + #endif |