os/ossrv/genericservices/s60compatibilityheaders/commonengine/src/stringloader.cpp
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/genericservices/s60compatibilityheaders/commonengine/src/stringloader.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,71 @@
1.4 +// Copyright (c) 2002-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +//
1.18 +
1.19 +
1.20 +
1.21 +// INCLUDE FILES
1.22 +#include <StringLoader.h>
1.23 +#include <tultextresourceutils.h>
1.24 +
1.25 +EXPORT_C void StringLoader::Load(TDes& aDest, TInt aResourceId, CCoeEnv* aLoaderEnv)
1.26 + { TulTextResourceUtils::Load(aDest, aResourceId, aLoaderEnv); }
1.27 +
1.28 +EXPORT_C void StringLoader::Format(TDes& aDest, const TDesC& aSource, TInt aPosition, TInt aSubs)
1.29 + { TulTextResourceUtils::Format(aDest, aSource, aPosition, aSubs); }
1.30 +
1.31 +EXPORT_C void StringLoader::Format(TDes& aDest, const TDesC& aSource, TInt aPosition, const TDesC& aSubs)
1.32 + { TulTextResourceUtils::Format(aDest, aSource, aPosition, aSubs); }
1.33 +
1.34 +EXPORT_C HBufC* StringLoader::LoadL(TInt aResourceId, CCoeEnv* aLoaderEnv)
1.35 + { return TulTextResourceUtils::LoadL(aResourceId, aLoaderEnv); }
1.36 +
1.37 +EXPORT_C HBufC* StringLoader::LoadL(TInt aResourceId, TInt aInt, CCoeEnv* aLoaderEnv)
1.38 + { return TulTextResourceUtils::LoadL(aResourceId, aInt, aLoaderEnv); }
1.39 +
1.40 +EXPORT_C HBufC* StringLoader::LoadL(TInt aResourceId, const TDesC& aString, CCoeEnv* aLoaderEnv)
1.41 + { return TulTextResourceUtils::LoadL(aResourceId, aString, aLoaderEnv); }
1.42 +
1.43 +EXPORT_C HBufC* StringLoader::LoadL(TInt aResourceId, const TDesC& aString, TInt aInt, CCoeEnv* aLoaderEnv)
1.44 + { return TulTextResourceUtils::LoadL(aResourceId, aString, aInt, aLoaderEnv); }
1.45 +
1.46 +EXPORT_C HBufC* StringLoader::LoadL(TInt aResourceId, const CArrayFix<TInt>& aInts, CCoeEnv* aLoaderEnv)
1.47 + { return TulTextResourceUtils::LoadL(aResourceId, aInts, aLoaderEnv); }
1.48 +
1.49 +EXPORT_C HBufC* StringLoader::LoadL(TInt aResourceId, const MDesCArray& aStrings, CCoeEnv* aLoaderEnv)
1.50 + { return TulTextResourceUtils::LoadL(aResourceId, aStrings, aLoaderEnv); }
1.51 +
1.52 +EXPORT_C HBufC* StringLoader::LoadL(TInt aResourceId, const MDesCArray& aStrings, const CArrayFix<TInt>& aInts, CCoeEnv* aLoaderEnv)
1.53 + { return TulTextResourceUtils::LoadL(aResourceId, aStrings, aInts, aLoaderEnv); }
1.54 +
1.55 +EXPORT_C HBufC* StringLoader::LoadLC(TInt aResourceId, CCoeEnv* aLoaderEnv)
1.56 + { return TulTextResourceUtils::LoadLC(aResourceId, aLoaderEnv); }
1.57 +
1.58 +EXPORT_C HBufC* StringLoader::LoadLC(TInt aResourceId, TInt aInt, CCoeEnv* aLoaderEnv)
1.59 + { return TulTextResourceUtils::LoadLC(aResourceId, aInt, aLoaderEnv); }
1.60 +
1.61 +EXPORT_C HBufC* StringLoader::LoadLC(TInt aResourceId, const TDesC& aString, CCoeEnv* aLoaderEnv)
1.62 + { return TulTextResourceUtils::LoadLC(aResourceId, aString, aLoaderEnv); }
1.63 +
1.64 +EXPORT_C HBufC* StringLoader::LoadLC(TInt aResourceId, const TDesC& aString, TInt aInt, CCoeEnv* aLoaderEnv)
1.65 + { return TulTextResourceUtils::LoadLC(aResourceId, aString, aInt, aLoaderEnv); }
1.66 +
1.67 +EXPORT_C HBufC* StringLoader::LoadLC(TInt aResourceId, const CArrayFix<TInt>& aInts, CCoeEnv* aLoaderEnv)
1.68 + { return TulTextResourceUtils::LoadLC(aResourceId, aInts, aLoaderEnv); }
1.69 +
1.70 +EXPORT_C HBufC* StringLoader::LoadLC(TInt aResourceId, const MDesCArray& aStrings, CCoeEnv* aLoaderEnv)
1.71 + { return TulTextResourceUtils::LoadLC(aResourceId, aStrings, aLoaderEnv); }
1.72 +
1.73 +EXPORT_C HBufC* StringLoader::LoadLC(TInt aResourceId, const MDesCArray& aStrings, const CArrayFix<TInt>& aInts, CCoeEnv* aLoaderEnv)
1.74 + { return TulTextResourceUtils::LoadLC(aResourceId, aStrings, aInts, aLoaderEnv); }