Update contrib.
2 * Copyright (c) 2001 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
19 #ifndef __STRINGTABLESUPPORT_H__
20 #define __STRINGTABLESUPPORT_H__
25 #define _STLIT8(name,s) const static TStLitC8<sizeof(s)> name={sizeof(s)-1,s}
27 // A class that differs from TLitC only in that it does not have a
28 // dereference operator defined
29 //##ModelId=3B1E52AB0100
37 inline operator const TDesC8&() const;
38 inline const TDesC8& operator()() const;
39 inline operator const __TRefDesC8() const;
41 //##ModelId=3B1E52AB0120
43 //##ModelId=3B1E52AB0117
44 TText8 iBuf[__Align8(S)];
48 inline const TDesC8& TStLitC8<S>::operator()() const
50 return *REINTERPRET_CAST(const TDesC8*,this);
54 inline TStLitC8<S>::operator const TDesC8&() const
56 return *REINTERPRET_CAST(const TDesC8*,this);
60 inline TStLitC8<S>::operator const __TRefDesC8() const
62 return *REINTERPRET_CAST(const TDesC8*,this);
67 #endif // __STRINGTABLESUPPORT_H__