Skip to content

Commit

Permalink
Specify the signal explicitly in the interface
Browse files Browse the repository at this point in the history
  • Loading branch information
Ignotus committed Apr 6, 2015
1 parent 29771dc commit 53efec1
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions kdotslib/iboardview.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,15 @@

namespace KDots
{
class Point;
class BoardModel;
class IBoardView : public QWidget
{
public:
IBoardView(QWidget *parent = 0) : QWidget(parent) {}
virtual void setModel(BoardModel *table) = 0;

protected:
virtual void pointClicked(const Point& point) = 0;
};
}

0 comments on commit 53efec1

Please sign in to comment.