Skip to content

Commit

Permalink
Add missing (dummy) definitions for member functions in PMWindowImp.
Browse files Browse the repository at this point in the history
  • Loading branch information
BartVandewoestyne committed Feb 13, 2024
1 parent 5dd2776 commit 3fbc611
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions Structural_Patterns/Bridge/PMWindowImp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,30 @@ void PMWindowImp::DeviceRect (
}
}

bool PMWindowImp::GpiBeginPath(HPS hps, long i) const
{
// TODO
return true;
}

bool PMWindowImp::GpiSetCurrentPosition(HPS hps, PPOINTL* p) const
{
// TODO
return true;
}

int PMWindowImp::GpiPolyLine(HPS hps, long i, PPOINTL* p) const
{
// TODO
return 1;
}

bool PMWindowImp::GpiEndPath(HPS hps) const
{
// TODO
return true;
}

void PMWindowImp::GpiStrokePath(HPS hps, long, long)
{
// TODO
Expand Down

0 comments on commit 3fbc611

Please sign in to comment.