?? asd.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: asd.cpp $
** $Revision: 5 $
** $Modtime: 10/10/98 2:45p $
*/
#ifdef _DEBUG
#undef THIS_FILE
static char BASED_CODE THIS_FILE[] = __FILE__;
#endif
ASD::ASD()
{
Mnemonic = "ASD";
}
ASD::~ASD()
{
Mnemonic.Empty();
}
void ASD::Empty( void )
{
}
#pragma warning( disable : 4100 )
BOOL ASD::Parse( const SENTENCE& sentence )
{
/*
** ASD - Autopilot System Data
**
** FORMAT TO BE DETERMINED
**
** As soon as NMEA makes up their mind and publishes this we can't do anything but return TRUE
*/
return( TRUE );
}
#pragma warning( default : 4100 )
BOOL ASD::Write( SENTENCE& sentence )
{
/*
** Let the parent do its thing
*/
RESPONSE::Write( sentence );
sentence.Finish();
return( TRUE );
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -