sl@0: // Copyright (c) 2002-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: sl@0: sl@0: // INCLUDE FILES sl@0: #include sl@0: #include sl@0: sl@0: EXPORT_C void StringLoader::Load(TDes& aDest, TInt aResourceId, CCoeEnv* aLoaderEnv) sl@0: { TulTextResourceUtils::Load(aDest, aResourceId, aLoaderEnv); } sl@0: sl@0: EXPORT_C void StringLoader::Format(TDes& aDest, const TDesC& aSource, TInt aPosition, TInt aSubs) sl@0: { TulTextResourceUtils::Format(aDest, aSource, aPosition, aSubs); } sl@0: sl@0: EXPORT_C void StringLoader::Format(TDes& aDest, const TDesC& aSource, TInt aPosition, const TDesC& aSubs) sl@0: { TulTextResourceUtils::Format(aDest, aSource, aPosition, aSubs); } sl@0: sl@0: EXPORT_C HBufC* StringLoader::LoadL(TInt aResourceId, CCoeEnv* aLoaderEnv) sl@0: { return TulTextResourceUtils::LoadL(aResourceId, aLoaderEnv); } sl@0: sl@0: EXPORT_C HBufC* StringLoader::LoadL(TInt aResourceId, TInt aInt, CCoeEnv* aLoaderEnv) sl@0: { return TulTextResourceUtils::LoadL(aResourceId, aInt, aLoaderEnv); } sl@0: sl@0: EXPORT_C HBufC* StringLoader::LoadL(TInt aResourceId, const TDesC& aString, CCoeEnv* aLoaderEnv) sl@0: { return TulTextResourceUtils::LoadL(aResourceId, aString, aLoaderEnv); } sl@0: sl@0: EXPORT_C HBufC* StringLoader::LoadL(TInt aResourceId, const TDesC& aString, TInt aInt, CCoeEnv* aLoaderEnv) sl@0: { return TulTextResourceUtils::LoadL(aResourceId, aString, aInt, aLoaderEnv); } sl@0: sl@0: EXPORT_C HBufC* StringLoader::LoadL(TInt aResourceId, const CArrayFix& aInts, CCoeEnv* aLoaderEnv) sl@0: { return TulTextResourceUtils::LoadL(aResourceId, aInts, aLoaderEnv); } sl@0: sl@0: EXPORT_C HBufC* StringLoader::LoadL(TInt aResourceId, const MDesCArray& aStrings, CCoeEnv* aLoaderEnv) sl@0: { return TulTextResourceUtils::LoadL(aResourceId, aStrings, aLoaderEnv); } sl@0: sl@0: EXPORT_C HBufC* StringLoader::LoadL(TInt aResourceId, const MDesCArray& aStrings, const CArrayFix& aInts, CCoeEnv* aLoaderEnv) sl@0: { return TulTextResourceUtils::LoadL(aResourceId, aStrings, aInts, aLoaderEnv); } sl@0: sl@0: EXPORT_C HBufC* StringLoader::LoadLC(TInt aResourceId, CCoeEnv* aLoaderEnv) sl@0: { return TulTextResourceUtils::LoadLC(aResourceId, aLoaderEnv); } sl@0: sl@0: EXPORT_C HBufC* StringLoader::LoadLC(TInt aResourceId, TInt aInt, CCoeEnv* aLoaderEnv) sl@0: { return TulTextResourceUtils::LoadLC(aResourceId, aInt, aLoaderEnv); } sl@0: sl@0: EXPORT_C HBufC* StringLoader::LoadLC(TInt aResourceId, const TDesC& aString, CCoeEnv* aLoaderEnv) sl@0: { return TulTextResourceUtils::LoadLC(aResourceId, aString, aLoaderEnv); } sl@0: sl@0: EXPORT_C HBufC* StringLoader::LoadLC(TInt aResourceId, const TDesC& aString, TInt aInt, CCoeEnv* aLoaderEnv) sl@0: { return TulTextResourceUtils::LoadLC(aResourceId, aString, aInt, aLoaderEnv); } sl@0: sl@0: EXPORT_C HBufC* StringLoader::LoadLC(TInt aResourceId, const CArrayFix& aInts, CCoeEnv* aLoaderEnv) sl@0: { return TulTextResourceUtils::LoadLC(aResourceId, aInts, aLoaderEnv); } sl@0: sl@0: EXPORT_C HBufC* StringLoader::LoadLC(TInt aResourceId, const MDesCArray& aStrings, CCoeEnv* aLoaderEnv) sl@0: { return TulTextResourceUtils::LoadLC(aResourceId, aStrings, aLoaderEnv); } sl@0: sl@0: EXPORT_C HBufC* StringLoader::LoadLC(TInt aResourceId, const MDesCArray& aStrings, const CArrayFix& aInts, CCoeEnv* aLoaderEnv) sl@0: { return TulTextResourceUtils::LoadLC(aResourceId, aStrings, aInts, aLoaderEnv); }