//=========================================================================
// Summary  : EdgetechFSDW
// Filename : EdgetechFSDWCommand.cc
// Author   : Reed Christenson reed@bluefinrobotics.com
// Project  : EdgetechFSDW Driver
// Revision : 0.0
// Created  : 2002.03.21
// Modified : 2002.03.21
//=========================================================================
// Description : EdgetechFSDW
//=========================================================================
// Changes:
//		14APR2014 EJM : changed queue to blocking access, use read(*data, timeout)

#include "EdgetechFSDWCommand.h"
#include "Syslog.h"

EdgetechFSDWCommand::EdgetechFSDWCommand( Access access )
    : DriverCommand( access, 
		     EdgetechFSDWCommandName,
		     sizeof( Command ),
		     MAXCOMMANDS,
		     false ) //blocking
{
    Syslog::write("Command constructor...");
}

EdgetechFSDWCommand::~EdgetechFSDWCommand()
{
    Syslog::write("Command destructor...");
}
