96e5a8739a
string git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@37812 a95241bf-73f2-0310-859d-f6bbb57e9c96
40 lines
808 B
C++
40 lines
808 B
C++
/*
|
|
* Copyright 2009, Adrien Destugues, pulkomandy@gmail.com.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
/* This file holds various wrapper functions to interface easily between ICU
|
|
* and the Be API.
|
|
*/
|
|
#ifndef __ICU_WRAPPER_H__
|
|
#define __ICU_WRAPPER_H__
|
|
|
|
|
|
#include <String.h>
|
|
|
|
#include <unicode/bytestream.h>
|
|
#include <String.h>
|
|
|
|
|
|
/* Convert UnicodeString to BString needs an ICU ByteSink to do the work */
|
|
class BStringByteSink : public ByteSink {
|
|
public:
|
|
BStringByteSink(BString* dest)
|
|
: fDest(dest)
|
|
{}
|
|
virtual void Append(const char* data, int32_t n)
|
|
{ fDest->Append(data, n); }
|
|
|
|
void SetTo(BString* dest)
|
|
{ fDest = dest; }
|
|
|
|
private:
|
|
BString* fDest;
|
|
|
|
BStringByteSink();
|
|
BStringByteSink(const BStringByteSink&);
|
|
BStringByteSink& operator=(const BStringByteSink&);
|
|
};
|
|
|
|
|
|
#endif
|