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

#ifndef PITCHRATECALCULATORIF_H_
#define PITCHRATECALCULATORIF_H_

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

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

}

#endif /*PITCHRATECALCULATORIF_H_*/
