summaryrefslogtreecommitdiff
path: root/basic
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2008-07-02 09:04:10 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2008-07-02 09:04:10 +0000
commit7c5eb81b19b48bf1c8c744425adc8f4a0ed818f2 (patch)
tree9157bf575f50883a44850c93899f38c430d93369 /basic
parentcf217cfd90569c8f0df0b5a48aa525152181d59f (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.hxx8
1 files changed, 7 insertions, 1 deletions
diff --git a/basic/source/sbx/sbxconv.hxx b/basic/source/sbx/sbxconv.hxx
index 0a1f41bcfe..2429839be2 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