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

#include "data/ElementURI.h"

#ifndef RUDDERSERVOIF_H_
#define RUDDERSERVOIF_H_

/**
 *  Specifies the interface details for the RudderServo component in the
 *  ServoModule.
 *
 *  RudderServo.h should only be included by RudderServo.cpp
 *  Other classes should include RudderServoIF.h
 *
 *  \ingroup modules_controller
 */
namespace RudderServoIF
{
// Component name
static const Str NAME( "RudderServo" );

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

// Include parent URIs -- must be in namespace and follow definition of NAME
#include "EZServoAllIF.h"
#include "EZServoLimitsIF.h"
#include "EZServoPIDIF.h"
#include "EZServoElevRuddIF.h"

}

#endif /*RUDDERSERVOIF_H_*/
