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

#ifndef WATERDEPTHENVELOPEIF_H_
#define WATERDEPTHENVELOPEIF_H_

#include "data/ElementURI.h"

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

/// Static consts for input settings
/// (Supplied so outputs can be directed to these inputs)
static const SettingURI MIN_WATER_DEPTH_SETTING( "minWaterDepth", Units::METER );
static const SettingURI MAX_WATER_DEPTH_SETTING( "maxWaterDepth", Units::METER );
}

#endif /*WATERDEPTHENVELOPEIF_H_*/
