diff -r 000000000000 -r 1fb32624e06b textrendering/texthandling/stext/TxtWriter.inl --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/textrendering/texthandling/stext/TxtWriter.inl Tue Feb 02 02:02:46 2010 +0200 @@ -0,0 +1,53 @@ +/* +* Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies). +* All rights reserved. +* This component and the accompanying materials are made available +* under the terms of "Eclipse Public License v1.0" +* which accompanies this distribution, and is available +* at the URL "http://www.eclipse.org/legal/epl-v10.html". +* +* Initial Contributors: +* Nokia Corporation - initial contribution. +* +* Contributors: +* +* Description: +* TSLBTransaltor class +* +*/ + + +/** + + @param aTextWriter A reference to MTextWriter implementation, used for the output. +*/ +inline TSLBTransaltor::TSLBTransaltor(MTextWriter& aTextWriter) : + iTextWriter(aTextWriter), + iPrevChar(0) + { + } + +////////////////////////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////////////////////////////// +// TParagraphTextWriter class + +/** +@param aOutputChar A reference to MOutputChar implementation, used for the output. +*/ +inline TParagraphTextWriter::TParagraphTextWriter(MOutputChar& aOutputChar) : + iOutputChar(aOutputChar) + { + } + +////////////////////////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////////////////////////////// +// TLineTextWriter class + +/** +@param aOutputChar A reference to MOutputChar implementation, used for the output. +*/ +inline TLineTextWriter::TLineTextWriter(MOutputChar& aOutputChar) : + iOutputChar(aOutputChar), + iPrevChar(0) + { + }