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

#ifndef SCPIIF_H
#define SCPIIF_H

#include "data/ElementURI.h"

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

// 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"

static const ConfigURI SAMPLE_TIME_CFG( NAME, "sampleTime", Units::SECOND );

static const DataURI SAMPLE_SCPI( NAME, "sampleSCPI", Units::BOOL );

}

#endif /*SCPIIF_H*/
