Mercurial > hg > svcore
diff base/Clipboard.h @ 1615:24dc8cb42755 single-point
Rename a number of classes and methods (including Point -> Event); comments
author | Chris Cannam |
---|---|
date | Thu, 07 Mar 2019 15:44:09 +0000 |
parents | 23a29e5dc0e9 |
children | d7ae9bfb015e |
line wrap: on
line diff
--- a/base/Clipboard.h Thu Mar 07 14:35:57 2019 +0000 +++ b/base/Clipboard.h Thu Mar 07 15:44:09 2019 +0000 @@ -18,7 +18,7 @@ #include <vector> -#include "Point.h" +#include "Event.h" class Clipboard { @@ -28,15 +28,15 @@ void clear(); bool empty() const; - const PointVector &getPoints() const; - void setPoints(const PointVector &points); - void addPoint(const Point &point); + const EventVector &getPoints() const; + void setPoints(const EventVector &points); + void addPoint(const Event &point); bool haveReferenceFrames() const; bool referenceFramesDiffer() const; protected: - PointVector m_points; + EventVector m_points; }; #endif