/** \file
 *
 * Specifies interface details for DeadReckonUsingSpeedCalculator component in
 * Navigation module.
 *
 * DeadReckonUsingSpeedCalculator.h should only be included by DeadReckonUsingSpeedCalculator.cpp
 * Other classes should include DeadReckonUsingSpeedCalculatorIF.h
 *
 * Copyright (c) 2013 MBARI
 * MBARI Proprietary Information. All Rights Reserved
 */

#ifndef DEADRECKONUSINGSPEEDCALCULATORIF_H_
#define DEADRECKONUSINGSPEEDCALCULATORIF_H_

/**
 * Specifies interface details for DeadReckonUsingSpeedCalculator component in
 * Navigation module.
 *
 * DeadReckonUsingSpeedCalculator.h should only be included by DeadReckonUsingSpeedCalculator.cpp
 * Other classes should include DeadReckonUsingSpeedCalculatorIF.h
 *
 * \ingroup modules_navigation
 */
namespace DeadReckonUsingSpeedCalculatorIF
{
// Static const for component name (can be used by other components)
static const Str NAME( "DeadReckonUsingSpeedCalculator" );

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

#endif /* DEADRECKONUSINGSPEEDCALCULATORIF_H_ */
