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

#ifndef MASSIF_H_
#define MASSIF_H_

#include "data/ElementURI.h"

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

/// Static consts for input settings
/// (Supplied so outputs can be directed to these inputs)
static const SettingURI MASS_POSITION_SETTING( "position", "Desired setting for the "
        "mass position", Units::METER );


}

#endif /*MASSIF_H_*/
