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

#ifndef EXECUTEIF_H_
#define EXECUTEIF_H_

#include "data/ElementURI.h"

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

/// Static const for Settings
static const StringSettingURI COMMAND_SETTING( "command" );

}

#endif /*EXECUTEIF_H_*/
