📄 mtw.cpp
字号:
#include "nmea0183.h"
#pragma hdrstop
/*
** Author: Samuel R. Blackburn
** Internet: sam_blackburn@pobox.com
**
** You can use it any way you like as long as you don't try to sell it.
**
** Copyright, 1996, Samuel R. Blackburn
**
** $Workfile: mtw.cpp $
** $Revision: 4 $
** $Modtime: 10/10/98 2:56p $
*/
#ifdef _DEBUG
#undef THIS_FILE
static char BASED_CODE THIS_FILE[] = __FILE__;
#endif
MTW::MTW()
{
Mnemonic = "MTW";
Empty();
}
MTW::~MTW()
{
Mnemonic.Empty();
Empty();
}
void MTW::Empty( void )
{
Temperature = 0.0;
UnitOfMeasurement.Empty();
}
BOOL MTW::Parse( const SENTENCE& sentence )
{
/*
** MTW - Water Temperature
**
** 1 2 3
** | | |
** $--MTW,x.x,C*hh<CR><LF>
**
** Field Number:
** 1) Degrees
** 2) Unit of Measurement, Celcius
** 3) Checksum
*/
/*
** First we check the checksum...
*/
if ( sentence.IsChecksumBad( 3 ) == True )
{
SetErrorMessage( "Invalid Checksum" );
return( FALSE );
}
Temperature = sentence.Double( 1 );
UnitOfMeasurement = sentence.Field( 2 );
return( TRUE );
}
CString MTW::PlainEnglish( void ) const
{
CString return_string;
return_string.Format( "The water temperature is %3.1lf ", Temperature );
return_string += UnitOfMeasurement;
return_string += ".";
return( return_string );
}
BOOL MTW::Write( SENTENCE& sentence )
{
/*
** Let the parent do its thing
*/
RESPONSE::Write( sentence );
sentence += Temperature;
sentence += UnitOfMeasurement;
sentence.Finish();
return( TRUE );
}
const MTW& MTW::operator = ( const MTW& source )
{
Temperature = source.Temperature;
UnitOfMeasurement = source.UnitOfMeasurement;
return( *this );
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -