Update contrib.
1 // Copyright (c) 2002-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.
16 #ifndef __LOGPACKAGE_H__
17 #define __LOGPACKAGE_H__
22 class CLogPackage : public CBase
28 IMPORT_C static CLogPackage* NewL();
29 IMPORT_C ~CLogPackage();
31 IMPORT_C void SetLogEventL(const CLogEvent& aEvent);
32 IMPORT_C void GetLogEventL(CLogEvent& aEvent) const;
34 IMPORT_C void SetLogEventTypeL(const CLogEventType& aType);
35 IMPORT_C void GetLogEventTypeL(CLogEventType& aType) const;
37 IMPORT_C void SetLogConfigL(const TLogConfig& aConfig);
38 IMPORT_C void GetLogConfigL(TLogConfig& aConfig) const;
40 IMPORT_C void SetLogFilterListL(const CLogFilterList& aFilterList);
41 IMPORT_C void GetLogFilterListL(CLogFilterList& aFilterList) const;
44 inline void ResizeL(TInt aSize);
55 inline TPtr8& CLogPackage::Ptr()
57 iPtr.Set(iBuffer->Ptr(0));
61 inline void CLogPackage::ResizeL(TInt aSize)
63 iBuffer->ResizeL(aSize);