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

#ifndef UNIVERSALFIXRESIDUALREPORTERIF_H_
#define UNIVERSALFIXRESIDUALREPORTERIF_H_

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

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

// configuration parameters
static const ConfigURI VERBOSITY_CFG( NAME, "verbosity", Units::COUNT );
}

#endif /*UNIVERSALFIXRESIDUALREPORTERIF_H_*/
