/** \file
 *
 *  Specifies the interface details for the YawRateCalculator component in the
 *  DerivationModule.
 *
 *  YawRateCalculator.h should only be included by YawRateCalculator.cpp
 *  Other classes should include YawRateCalculatorIF.h
 *
 *  Copyright (c) 2007,2008,2009 MBARI
 *  MBARI Proprietary Information.  All Rights Reserved
 */

#ifndef YAWRATECALCULATORIF_H_
#define YAWRATECALCULATORIF_H_

/**
 *  Specifies the interface details for the YawRateCalculator component in the
 *  DerivationModule.
 *
 *  YawRateCalculator.h should only be included by YawRateCalculator.cpp
 *  Other classes should include YawRateCalculatorIF.h
 *
 *  \ingroup modules_derivation
 */
namespace YawRateCalculatorIF
{
/// Static const for component name
/// (Can be used by other components)
static const Str NAME( "YawRateCalculator" );

// Include common ConfigURIs -- must be in namespace and follow definition of NAME
#include "component/HasLoadAtStartupIF.h"

}

#endif /*YAWRATECALCULATORIF_H_*/
