Update contrib.
1 // Copyright (c) 1997-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.
14 // This file contains the definition of the class CDefaultLogOutput
15 // This file comment is for DOxygen only and is ignored by EDoc.
23 #ifndef __DEFAULTLOGOUTPUT_H__
24 #define __DEFAULTLOGOUTPUT_H__
29 #include <ecom/test_bed/dataformat.h>
33 Comments : Default implementation of the MLogOutput interface. This will be used
34 if an alternative is not supplied at construction of the CTestController.
37 NONSHARABLE_CLASS(CDefaultLogOutput) : public CBase, public MLogOutput
41 @fn CDefaultLogOutput(const TDesC& aTitle)
42 Intended Usage : Standard constructor
45 @param aTitle The title to be used in the log
48 explicit CDefaultLogOutput(const TDesC& aTitle);
51 @fn ~CDefaultLogOutput()
52 Intended Usage : Standard destructor
60 Intended Usage : Opens the RFileLogger ready for logging
61 Error Condition : Fails to connect to RFileLogger
62 @leave @see RFileLogger::Connect()
64 @pre This object is fully constructed
65 @post RFileLogger is opened and ready for logging
71 @fn void Write(const TDesC& aOutput)
72 Intended Usage : Outputs the specified message to RFileLogger
74 @param aOutput The descriptor to be logged
75 @pre OpenL has previously been called
76 @post The descriptor has been written to RFileLogger
79 void Write(const TDesC& aOutput);
83 Intended Usage : Closes RFileLogger when logging has completed
85 @pre OpenL has previously been called
86 @post RFileLogger has been closed and this object can be deleted
92 /** The title which is output to the log file */
95 /** Handle to the file logging mechanism for outputting messages */
100 #endif // __DEFAULTLOGOUTPUT_H__