sl@0: // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // ULogger serial plugin header file sl@0: // sl@0: // sl@0: sl@0: /** sl@0: @file sl@0: @internalTechnology sl@0: @prototype sl@0: */ sl@0: sl@0: #ifndef ULOGGERSERIALPLUGIN_H sl@0: #define ULOGGERSERIALPLUGIN_H sl@0: sl@0: #include "uloggeroutputplugin.h" sl@0: #include // RBusDevComm sl@0: #include sl@0: sl@0: namespace Ulogger sl@0: { sl@0: class CSerialWriter : public CPlugin, public MOutputPlugin sl@0: { sl@0: public: sl@0: static CSerialWriter* NewL(); sl@0: ~CSerialWriter(); sl@0: public://from MOutputPlugin sl@0: TInt ConfigureOutputPlugin(const RPointerArray& aSettings); sl@0: TInt Write(const TDesC8& aData); sl@0: void CloseOutputPlugin(); sl@0: public: //from CPlugin sl@0: TAny* GetInterfaceL(TPluginInterface aInterfaceId); sl@0: private: sl@0: CSerialWriter(); sl@0: void ConstructL(); sl@0: TInt Connect(); sl@0: TInt Config(); sl@0: TInt Disconnect(); sl@0: private: sl@0: RBusDevComm iComm; sl@0: TBool iReady; sl@0: TInt iPortNum; sl@0: }; sl@0: } // namespace sl@0: sl@0: #endif // ULOGGERSERIALPLUGIN_H