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

#ifndef DROPWEIGHTIF_H
#define DROPWEIGHTIF_H

#include "data/ElementURI.h"

/**
 *  Specifies the interface details for the DropWeight component in the
 *  SensorModule.
 *
 *  \ingroup modules_sensor
 */
namespace DropWeightIF
{
/// Static const for component name
/// (Can be used by other components)
static const Str NAME( "DropWeight" );

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

static const DataURI DROP_WEIGHT_STATE( NAME, "dropWeightState", Units::BOOL );

}

#endif /*DROPWEIGHTIF_H*/
