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

#ifndef OFFSHOREENVELOPEIF_H_
#define OFFSHOREENVELOPEIF_H_

#include "data/ElementURI.h"

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

/// Static consts for input settings
/// (Supplied so outputs can be directed to these inputs)
static const SettingURI MIN_OFFSHORE_SETTING( "minOffshore", Units::METER );
static const SettingURI MAX_OFFSHORE_SETTING( "maxOffshore", Units::METER );
}

#endif /*OFFSHOREENVELOPEIF_H_*/
