Skip to content

Commit

Permalink
Add functions to Display.cpp and .h
Browse files Browse the repository at this point in the history
  • Loading branch information
phl0 committed Sep 15, 2016
1 parent 7daa0b9 commit 7246fde
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Display.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,11 @@ void CDisplay::clearFusion()
}
}

void CDisplay::writeCW()
{
writeCWInt();
}

void CDisplay::clock(unsigned int ms)
{
m_timer1.clock(ms);
Expand Down
4 changes: 4 additions & 0 deletions Display.h
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@ class CDisplay
void writeFusion(const char* source, const char* dest, const char* type, const char* origin);
void clearFusion();

void writeCW();

virtual void close() = 0;

void clock(unsigned int ms);
Expand All @@ -62,6 +64,8 @@ class CDisplay
virtual void writeFusionInt(const char* source, const char* dest, const char* type, const char* origin) = 0;
virtual void clearFusionInt() = 0;

virtual void writeCWInt() = 0;

virtual void clockInt(unsigned int ms);

private:
Expand Down

0 comments on commit 7246fde

Please sign in to comment.