sl@0: // Copyright (c) 2002-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: // sl@0: sl@0: #ifndef __LOGPACKAGE_H__ sl@0: #define __LOGPACKAGE_H__ sl@0: sl@0: #include sl@0: #include sl@0: sl@0: class CLogPackage : public CBase sl@0: /** sl@0: @internalComponent sl@0: */ sl@0: { sl@0: public: sl@0: IMPORT_C static CLogPackage* NewL(); sl@0: IMPORT_C ~CLogPackage(); sl@0: // sl@0: IMPORT_C void SetLogEventL(const CLogEvent& aEvent); sl@0: IMPORT_C void GetLogEventL(CLogEvent& aEvent) const; sl@0: // sl@0: IMPORT_C void SetLogEventTypeL(const CLogEventType& aType); sl@0: IMPORT_C void GetLogEventTypeL(CLogEventType& aType) const; sl@0: // sl@0: IMPORT_C void SetLogConfigL(const TLogConfig& aConfig); sl@0: IMPORT_C void GetLogConfigL(TLogConfig& aConfig) const; sl@0: // sl@0: IMPORT_C void SetLogFilterListL(const CLogFilterList& aFilterList); sl@0: IMPORT_C void GetLogFilterListL(CLogFilterList& aFilterList) const; sl@0: // sl@0: inline TPtr8& Ptr(); sl@0: inline void ResizeL(TInt aSize); sl@0: // sl@0: private: sl@0: CLogPackage(); sl@0: void ConstructL(); sl@0: // sl@0: private: sl@0: CBufFlat* iBuffer; sl@0: TPtr8 iPtr; sl@0: }; sl@0: sl@0: inline TPtr8& CLogPackage::Ptr() sl@0: { sl@0: iPtr.Set(iBuffer->Ptr(0)); sl@0: return iPtr; sl@0: } sl@0: sl@0: inline void CLogPackage::ResizeL(TInt aSize) sl@0: { sl@0: iBuffer->ResizeL(aSize); sl@0: } sl@0: sl@0: #endif sl@0: