sl@0: /* sl@0: * Copyright (c) 2001 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: #ifndef __STRINGTABLESUPPORT_H__ sl@0: #define __STRINGTABLESUPPORT_H__ sl@0: sl@0: /** sl@0: @internalComponent sl@0: */ sl@0: #define _STLIT8(name,s) const static TStLitC8 name={sizeof(s)-1,s} sl@0: sl@0: // A class that differs from TLitC only in that it does not have a sl@0: // dereference operator defined sl@0: //##ModelId=3B1E52AB0100 sl@0: template sl@0: class TStLitC8 sl@0: /** sl@0: @internalComponent sl@0: */ sl@0: { sl@0: public: sl@0: inline operator const TDesC8&() const; sl@0: inline const TDesC8& operator()() const; sl@0: inline operator const __TRefDesC8() const; sl@0: public: sl@0: //##ModelId=3B1E52AB0120 sl@0: TUint iTypeLength; sl@0: //##ModelId=3B1E52AB0117 sl@0: TText8 iBuf[__Align8(S)]; sl@0: }; sl@0: sl@0: template sl@0: inline const TDesC8& TStLitC8::operator()() const sl@0: { sl@0: return *REINTERPRET_CAST(const TDesC8*,this); sl@0: } sl@0: sl@0: template sl@0: inline TStLitC8::operator const TDesC8&() const sl@0: { sl@0: return *REINTERPRET_CAST(const TDesC8*,this); sl@0: } sl@0: sl@0: template sl@0: inline TStLitC8::operator const __TRefDesC8() const sl@0: { sl@0: return *REINTERPRET_CAST(const TDesC8*,this); sl@0: } sl@0: sl@0: struct TStringTable; sl@0: sl@0: #endif // __STRINGTABLESUPPORT_H__