p.cpp

来自「GPS的协议为NMEA0183」· C++ 代码 · 共 71 行

CPP
71
字号
#include "nmea0183.h"
#pragma hdrstop

/*
** Author: Samuel R. Blackburn
** CI$: 76300,326
** Internet: sammy@sed.csc.com
**
** You can use it any way you like.
*/

IMPLEMENT_DYNAMIC( P, RESPONSE )

P::P()
{
   Mnemonic = "P";
   Empty();
}

P::~P()
{
   Mnemonic.Empty();
   Empty();
}

void P::Empty( void )
{
   ASSERT_VALID( this );

   Sentence.Empty();
}

BOOL P::Parse( const SENTENCE& sentence )
{
   ASSERT_VALID( this );

   /*
   ** This is where parsing of proprietary sentences will go...
   */

   Sentence = sentence;

   return( TRUE );
}

BOOL P::Write( SENTENCE& sentence )
{
   ASSERT_VALID( this );

   /*
   ** Let the parent do its thing
   */
   
   RESPONSE::Write( sentence );

   sentence += Sentence;

   sentence.Finish();

   return( TRUE );
}

const P& P::operator = ( const P& source )
{
   ASSERT_VALID( this );

   Sentence = source.Sentence;

   return( *this );
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?