os/persistentdata/traceservices/tracefw/ulogger/src/pluginframework/outputframework.h
Update contrib.
1 // Copyright (c) 2007-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 // ULogger output framework header
24 #ifndef ULOGGEROUTFRWK_H
25 #define ULOGGEROUTFRWK_H
28 #include "uloggeroutputplugin.h"
32 /*!COutputFramework class.
34 NONSHARABLE_CLASS(COutputFramework) : public CBase
37 /**Standard Symbian OS construction method.*/
38 IMPORT_C static COutputFramework* NewL(MOutputPlugin& aOutputPlugin, const RPointerArray<TPluginConfiguration>& aOutputSettings);
40 IMPORT_C ~COutputFramework();
41 /** This function send data to active output channel. */
42 IMPORT_C TInt SendData(const TDesC8& aData);
44 IMPORT_C void ReleaseOutputResources();
47 COutputFramework(MOutputPlugin& aOutputPlugin);
48 void ConstructL(const RPointerArray<TPluginConfiguration>& aOutputSettings);
51 MOutputPlugin& iOutputPlugin;
52 RPointerArray<TPluginConfiguration> iOutputSettings;