Skip to content

Commit

Permalink
#2 Rename APRSReader -> APRSUnit
Browse files Browse the repository at this point in the history
  • Loading branch information
F4FXL committed Jan 6, 2022
1 parent 51748fd commit a969590
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions APRSReader.cpp → APRSUnit.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,16 @@
*/


#include "APRSReader.h"
#include "APRSUnit.h"
#include "APRSFrame.h"
#include "APRSParser.h"

CAPRSReader::CAPRSReader()
CAPRSUnit::CAPRSUnit()
{

}

bool CAPRSReader::readAprsFrame(const std::string& aprsFrame)
bool CAPRSUnit::readAprsFrame(const std::string& aprsFrame)
{
auto bla = aprsFrame;
return false;
Expand Down
4 changes: 2 additions & 2 deletions APRSReader.h → APRSUnit.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@

#include "ReadAPRSFrameCallback.h"

class CAPRSReader : public CReadAPRSFrameCallback
class CAPRSUnit : public CReadAPRSFrameCallback
{
public:
CAPRSReader();
CAPRSUnit();
bool readAprsFrame(const std::string& aprsFrame);

private:
Expand Down

0 comments on commit a969590

Please sign in to comment.