From d4d0490756238fd9ea628d756fc2e6ada8db1b9b Mon Sep 17 00:00:00 2001 From: Charles Otto Date: Tue, 13 Aug 2013 10:57:33 -0400 Subject: [PATCH] Remove const project methods from gui.cpp --- openbr/plugins/gui.cpp | 12 ------------ 1 file changed, 0 insertions(+), 12 deletions(-) diff --git a/openbr/plugins/gui.cpp b/openbr/plugins/gui.cpp index cd56e7a..e3c6577 100644 --- a/openbr/plugins/gui.cpp +++ b/openbr/plugins/gui.cpp @@ -379,12 +379,6 @@ public: void train(const TemplateList &data) { (void) data; } - void project(const TemplateList &src, TemplateList &dst) const - { - Transform * non_const = (ShowTransform *) this; - non_const->projectUpdate(src,dst); - } - void projectUpdate(const TemplateList &src, TemplateList &dst) { dst = src; @@ -550,12 +544,6 @@ public: void train(const TemplateList &data) { (void) data; } - void project(const TemplateList &src, TemplateList &dst) const - { - Transform * non_const = (ElicitTransform *) this; - non_const->projectUpdate(src,dst); - } - void projectUpdate(const TemplateList &src, TemplateList &dst) { dst = src; -- libgit2 0.21.4