os/ossrv/genericservices/s60compatibilityheaders/commonengine/src/stringloader.cpp
Update contrib.
1 // Copyright (c) 2002-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
19 #include <StringLoader.h>
20 #include <tultextresourceutils.h>
22 EXPORT_C void StringLoader::Load(TDes& aDest, TInt aResourceId, CCoeEnv* aLoaderEnv)
23 { TulTextResourceUtils::Load(aDest, aResourceId, aLoaderEnv); }
25 EXPORT_C void StringLoader::Format(TDes& aDest, const TDesC& aSource, TInt aPosition, TInt aSubs)
26 { TulTextResourceUtils::Format(aDest, aSource, aPosition, aSubs); }
28 EXPORT_C void StringLoader::Format(TDes& aDest, const TDesC& aSource, TInt aPosition, const TDesC& aSubs)
29 { TulTextResourceUtils::Format(aDest, aSource, aPosition, aSubs); }
31 EXPORT_C HBufC* StringLoader::LoadL(TInt aResourceId, CCoeEnv* aLoaderEnv)
32 { return TulTextResourceUtils::LoadL(aResourceId, aLoaderEnv); }
34 EXPORT_C HBufC* StringLoader::LoadL(TInt aResourceId, TInt aInt, CCoeEnv* aLoaderEnv)
35 { return TulTextResourceUtils::LoadL(aResourceId, aInt, aLoaderEnv); }
37 EXPORT_C HBufC* StringLoader::LoadL(TInt aResourceId, const TDesC& aString, CCoeEnv* aLoaderEnv)
38 { return TulTextResourceUtils::LoadL(aResourceId, aString, aLoaderEnv); }
40 EXPORT_C HBufC* StringLoader::LoadL(TInt aResourceId, const TDesC& aString, TInt aInt, CCoeEnv* aLoaderEnv)
41 { return TulTextResourceUtils::LoadL(aResourceId, aString, aInt, aLoaderEnv); }
43 EXPORT_C HBufC* StringLoader::LoadL(TInt aResourceId, const CArrayFix<TInt>& aInts, CCoeEnv* aLoaderEnv)
44 { return TulTextResourceUtils::LoadL(aResourceId, aInts, aLoaderEnv); }
46 EXPORT_C HBufC* StringLoader::LoadL(TInt aResourceId, const MDesCArray& aStrings, CCoeEnv* aLoaderEnv)
47 { return TulTextResourceUtils::LoadL(aResourceId, aStrings, aLoaderEnv); }
49 EXPORT_C HBufC* StringLoader::LoadL(TInt aResourceId, const MDesCArray& aStrings, const CArrayFix<TInt>& aInts, CCoeEnv* aLoaderEnv)
50 { return TulTextResourceUtils::LoadL(aResourceId, aStrings, aInts, aLoaderEnv); }
52 EXPORT_C HBufC* StringLoader::LoadLC(TInt aResourceId, CCoeEnv* aLoaderEnv)
53 { return TulTextResourceUtils::LoadLC(aResourceId, aLoaderEnv); }
55 EXPORT_C HBufC* StringLoader::LoadLC(TInt aResourceId, TInt aInt, CCoeEnv* aLoaderEnv)
56 { return TulTextResourceUtils::LoadLC(aResourceId, aInt, aLoaderEnv); }
58 EXPORT_C HBufC* StringLoader::LoadLC(TInt aResourceId, const TDesC& aString, CCoeEnv* aLoaderEnv)
59 { return TulTextResourceUtils::LoadLC(aResourceId, aString, aLoaderEnv); }
61 EXPORT_C HBufC* StringLoader::LoadLC(TInt aResourceId, const TDesC& aString, TInt aInt, CCoeEnv* aLoaderEnv)
62 { return TulTextResourceUtils::LoadLC(aResourceId, aString, aInt, aLoaderEnv); }
64 EXPORT_C HBufC* StringLoader::LoadLC(TInt aResourceId, const CArrayFix<TInt>& aInts, CCoeEnv* aLoaderEnv)
65 { return TulTextResourceUtils::LoadLC(aResourceId, aInts, aLoaderEnv); }
67 EXPORT_C HBufC* StringLoader::LoadLC(TInt aResourceId, const MDesCArray& aStrings, CCoeEnv* aLoaderEnv)
68 { return TulTextResourceUtils::LoadLC(aResourceId, aStrings, aLoaderEnv); }
70 EXPORT_C HBufC* StringLoader::LoadLC(TInt aResourceId, const MDesCArray& aStrings, const CArrayFix<TInt>& aInts, CCoeEnv* aLoaderEnv)
71 { return TulTextResourceUtils::LoadLC(aResourceId, aStrings, aInts, aLoaderEnv); }