#include "BenthosModemCommand.h"

const char *BenthosModemCommandName = "benthosModemCommand";

BenthosModemCommand::BenthosModemCommand( MessageQueue::Access access )
     : MessageQueue( BenthosModemCommandName,
                     sizeof( Command ),
                     5,
                     access,
                     False )
{

}

BenthosModemCommand::~BenthosModemCommand()
{

}

//===============================================================
int BenthosModemCommand::read( Command *cmd )
{
     return MessageQueue::read((void *)cmd);
}

int BenthosModemCommand::write( Command *cmd )
{
     return MessageQueue::write((void *)cmd);
}


//===============================================================

