os/persistentdata/loggingservices/eventlogger/Shared/logpackage.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/persistentdata/loggingservices/eventlogger/Shared/logpackage.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,67 @@
     1.4 +// Copyright (c) 2002-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +//
    1.18 +
    1.19 +#ifndef __LOGPACKAGE_H__
    1.20 +#define __LOGPACKAGE_H__
    1.21 +
    1.22 +#include <s32mem.h>
    1.23 +#include <logcli.h>
    1.24 +
    1.25 +class CLogPackage : public CBase
    1.26 +/**
    1.27 +@internalComponent
    1.28 +*/
    1.29 +	{
    1.30 +public:
    1.31 +	IMPORT_C static CLogPackage* NewL();
    1.32 +	IMPORT_C ~CLogPackage();
    1.33 +	//
    1.34 +	IMPORT_C void SetLogEventL(const CLogEvent& aEvent);
    1.35 +	IMPORT_C void GetLogEventL(CLogEvent& aEvent) const;
    1.36 +	//
    1.37 +	IMPORT_C void SetLogEventTypeL(const CLogEventType& aType);
    1.38 +	IMPORT_C void GetLogEventTypeL(CLogEventType& aType) const;
    1.39 +	//
    1.40 +	IMPORT_C void SetLogConfigL(const TLogConfig& aConfig);
    1.41 +	IMPORT_C void GetLogConfigL(TLogConfig& aConfig) const;
    1.42 +	//
    1.43 +	IMPORT_C void SetLogFilterListL(const CLogFilterList& aFilterList);
    1.44 +	IMPORT_C void GetLogFilterListL(CLogFilterList& aFilterList) const;
    1.45 +	//
    1.46 +	inline TPtr8& Ptr();
    1.47 +	inline void ResizeL(TInt aSize);
    1.48 +	//
    1.49 +private:
    1.50 +	CLogPackage();
    1.51 +	void ConstructL();
    1.52 +	//
    1.53 +private:
    1.54 +	CBufFlat* iBuffer;
    1.55 +	TPtr8 iPtr;
    1.56 +	};
    1.57 +
    1.58 +inline TPtr8& CLogPackage::Ptr()
    1.59 +	{
    1.60 +	iPtr.Set(iBuffer->Ptr(0));
    1.61 +	return iPtr;
    1.62 +	}
    1.63 +
    1.64 +inline void CLogPackage::ResizeL(TInt aSize)
    1.65 +	{
    1.66 +	iBuffer->ResizeL(aSize);
    1.67 +	}
    1.68 +
    1.69 +#endif
    1.70 +