GridImpl structure to shorten grid widget implementation

This commit is contained in:
ozantonkal
2013-07-24 10:13:01 +02:00
parent 6e5a712f6e
commit 952029a47b
2 changed files with 31 additions and 33 deletions

View File

@@ -125,6 +125,9 @@ namespace cv
public:
GridWidget(const Vec2i &dimensions, const Vec2d &spacing, const Color &color = Color::white());
GridWidget(const Vec4f &coeffs, const Vec2i &dimensions, const Vec2d &spacing, const Color &color = Color::white());
private:
struct GridImpl;
};