Skip to content

Commit

Permalink
Fix override
Browse files Browse the repository at this point in the history
  • Loading branch information
fspindle committed Oct 25, 2023
1 parent 0e5611b commit 6f09e69
Show file tree
Hide file tree
Showing 2 changed files with 222 additions and 244 deletions.
15 changes: 5 additions & 10 deletions modules/gui/include/visp3/gui/vpDisplayWin32.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
/****************************************************************************
*
/*
* ViSP, open source Visual Servoing Platform software.
* Copyright (C) 2005 - 2023 by Inria. All rights reserved.
*
Expand Down Expand Up @@ -30,11 +29,7 @@
*
* Description:
* Windows 32 display base class
*
* Authors:
* Bruno Renier
*
*****************************************************************************/
*/

#include <visp3/core/vpConfig.h>

Expand Down Expand Up @@ -165,10 +160,10 @@ class VISP_EXPORT vpDisplayWin32 : public vpDisplay
void displayCircle(const vpImagePoint &center, unsigned int radius, const vpColor &color, bool fill = false,
unsigned int thickness = 1) override;

void displayCross(const vpImagePoint &ip, unsigned int size, const vpColor &color, unsigned int thickness = 1); override
void displayCross(const vpImagePoint &ip, unsigned int size, const vpColor &color, unsigned int thickness = 1) override;

void displayDotLine(const vpImagePoint &ip1, const vpImagePoint &ip2, const vpColor &color,
unsigned int thickness = 1) override;
void displayDotLine(const vpImagePoint &ip1, const vpImagePoint &ip2, const vpColor &color,
unsigned int thickness = 1) override;

void displayLine(const vpImagePoint &ip1, const vpImagePoint &ip2, const vpColor &color, unsigned int thickness = 1) override;

Expand Down
Loading

0 comments on commit 6f09e69

Please sign in to comment.