diff -r 000000000000 -r bde4ae8d615e os/persistentdata/traceservices/tracefw/ulogger/src/pluginframework/outputframework.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/os/persistentdata/traceservices/tracefw/ulogger/src/pluginframework/outputframework.h Fri Jun 15 03:10:57 2012 +0200 @@ -0,0 +1,56 @@ +// Copyright (c) 2007-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: +// ULogger output framework header +// +// + +/** + @file + @internalTechnology + @prototype +*/ + +#ifndef ULOGGEROUTFRWK_H +#define ULOGGEROUTFRWK_H + +#include +#include "uloggeroutputplugin.h" + +namespace Ulogger +{ +/*!COutputFramework class. +*/ +NONSHARABLE_CLASS(COutputFramework) : public CBase + { +public: + /**Standard Symbian OS construction method.*/ + IMPORT_C static COutputFramework* NewL(MOutputPlugin& aOutputPlugin, const RPointerArray& aOutputSettings); + /**Destructor.*/ + IMPORT_C ~COutputFramework(); + /** This function send data to active output channel. */ + IMPORT_C TInt SendData(const TDesC8& aData); + /** */ + IMPORT_C void ReleaseOutputResources(); + +private: + COutputFramework(MOutputPlugin& aOutputPlugin); + void ConstructL(const RPointerArray& aOutputSettings); + + //data + MOutputPlugin& iOutputPlugin; + RPointerArray iOutputSettings; + }; + +} // namespace +#endif // ULOGGER_H