traceservices/tracefw/ost_trace_api/unit_test/te_ost/inc/utracemodutracetest.h
author Pat Downey <patd@symbian.org>
Wed, 01 Sep 2010 12:39:58 +0100
branchRCL_3
changeset 24 cc28652e0254
parent 0 08ec8eefde2f
permissions -rw-r--r--
Revert incorrect RCL_3 drop: Revision: 201035 Kit: 201035

// 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:
//

#ifndef UTRACEMODUTRACETEST_H_
#define UTRACEMODUTRACETEST_H_

// utracemodutracetest.h
//
// Header file for the Ost unit test trace module which defines attributes
// to be used in its trace points.

/**
@internalTechnology
@released
*/
#include <opensystemtrace.h>
#include "te_traceglobals.h"


/**
[Definition of what the scope of the module is.
For instance if the Module has the same scope as a binary file then it may simply be enough to say that the trace from this module comes from the binary <binary file name>. However, if this is not the case then a more detailed explanation will need to be given.]
*/
namespace UTraceModUtraceTest
	{
	enum TraceId
	    {
	    /**
	    [Format 0 description]
	    */
	    EFormatTest1 = KInitialClientFormat,

	    /**
	    [Format 1 description]
	    */
	    EFormatTest2,

	    ETraceIdHighWaterMark,
	    };
    __ASSERT_COMPILE(ETraceIdHighWaterMark <= KMaxTraceId + 1);

} // end of namespace UTraceModUtraceTest

#endif /*UTRACEMODUTRACETEST_H_*/