os/textandloc/localisation/localesupport/src/ls_test.cpp
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/textandloc/localisation/localesupport/src/ls_test.cpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,68 @@
     1.4 +/*
     1.5 +* Copyright (c) 2000-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.6 +* All rights reserved.
     1.7 +* This component and the accompanying materials are made available
     1.8 +* under the terms of "Eclipse Public License v1.0"
     1.9 +* which accompanies this distribution, and is available
    1.10 +* at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.11 +*
    1.12 +* Initial Contributors:
    1.13 +* Nokia Corporation - initial contribution.
    1.14 +*
    1.15 +* Contributors:
    1.16 +*
    1.17 +* Description: 
    1.18 +* The LCharSet object used by the Test locale.
    1.19 +* Generated by COLTAB.
    1.20 +*
    1.21 +*/
    1.22 +
    1.23 +
    1.24 +#include "ls_std.h"
    1.25 +#include <collate.h>
    1.26 +
    1.27 +const TUint KUidTestCollationMethod = 0x1000B07C;
    1.28 +
    1.29 +static const TUint32 TheTestKey[] = 
    1.30 +	{
    1.31 +	0x74b0109,0x74b0121,0x71f0109,0x71f0121,0x7030109,0x7030121,0x6f70109,0x6f70121,
    1.32 +	0x6e30109,0x6e30121,0x6cf0109,0x6cf0121,
    1.33 +	};
    1.34 +
    1.35 +static const TUint32 TheTestIndex[] = 
    1.36 +	{
    1.37 +	0x410001,0x420003,0x430005,0x440007,0x450009,0x46000b,0x610000,0x620002,
    1.38 +	0x630004,0x640006,0x650008,0x66000a,
    1.39 +	};
    1.40 +
    1.41 +static const TCollationKeyTable TheTestTable = 
    1.42 +	{ TheTestKey, TheTestIndex, 12, NULL, NULL, 0 };
    1.43 +
    1.44 +static const TCollationMethod TheCollationMethod[] = 
    1.45 +	{
    1.46 +		{
    1.47 +		KUidTestCollationMethod, // the method for the locale
    1.48 +		NULL, // use the standard table as the main table
    1.49 +		&TheTestTable, // the locale values override the standard values
    1.50 +		0 // the flags are standard
    1.51 +		},
    1.52 +		{
    1.53 +		KUidBasicCollationMethod, // the standard unlocalised method
    1.54 +		NULL, // null means use the standard table
    1.55 +		NULL, // there's no override table
    1.56 +		0 // the flags are standard
    1.57 +		}
    1.58 +	};
    1.59 +
    1.60 +static const TCollationDataSet TheCollationDataSet =
    1.61 +	{
    1.62 +	TheCollationMethod,
    1.63 +	2
    1.64 +	};
    1.65 +
    1.66 +// The one and only locale character set object.
    1.67 +const LCharSet TheCharSet =
    1.68 +	{
    1.69 +	NULL,
    1.70 +	&TheCollationDataSet
    1.71 +	};