os/persistentdata/persistentstorage/centralrepository/convtool/src/consoleprint.h
Update contrib.
1 // Copyright (c) 2005-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.
16 #ifndef __CONSOLEPRINT_H__
17 #define __CONSOLEPRINT_H__
22 const TUint32 KTimeToWait = 30000000;
24 // class CConsolePrint - provide functions to do screen output.
25 class CConsolePrint : public CBase
28 static CConsolePrint* NewL(TBool aWaitForAck);
29 virtual ~CConsolePrint();
30 void Printf(TRefByValue<const TDesC> aFmt, ...);
31 void SetWaitMode(TBool aWaitForAck);
34 CConsolePrint(TBool aWaitForAck);
36 void WaitForUserAck();
39 CConsoleBase* iConsole;
44 #endif // __CONSOLEPRINT_H__