X-Git-Url: https://git.saurik.com/apple/javascriptcore.git/blobdiff_plain/b37bf2e156556c589aea3e1f58a377f2b1189665..14957cd040308e3eeec43d26bae5d76da13fcd85:/wtf/unicode/Unicode.h?ds=inline diff --git a/wtf/unicode/Unicode.h b/wtf/unicode/Unicode.h index f890afc..50524b1 100644 --- a/wtf/unicode/Unicode.h +++ b/wtf/unicode/Unicode.h @@ -1,7 +1,7 @@ -// -*- c-basic-offset: 2 -*- /* - * This file is part of the KDE libraries * Copyright (C) 2006 George Staikos + * Copyright (C) 2006, 2008, 2009 Apple Inc. All rights reserved. + * Copyright (C) 2007-2009 Torch Mobile, Inc. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public @@ -20,18 +20,25 @@ * */ -#ifndef KJS_UNICODE_H -#define KJS_UNICODE_H +#ifndef WTF_UNICODE_H +#define WTF_UNICODE_H -#include +#include #if USE(QT4_UNICODE) #include "qt4/UnicodeQt4.h" #elif USE(ICU_UNICODE) #include +#elif USE(GLIB_UNICODE) +#include +#elif USE(WINCE_UNICODE) +#include +#elif USE(BREWMP_UNICODE) +#include #else #error "Unknown Unicode implementation" #endif -#endif -// vim: ts=2 sw=2 et +COMPILE_ASSERT(sizeof(UChar) == 2, UCharIsTwoBytes); + +#endif // WTF_UNICODE_H