minor naming

This commit is contained in:
Anatoly Baksheev
2013-07-09 19:35:26 +04:00
parent 200b254bad
commit 509a93c7ce
3 changed files with 8 additions and 9 deletions

View File

@@ -2,7 +2,7 @@
#include <opencv2/core/cvdef.h>
#include <vtkSmartPointer.h>
#include <vtkLODActor.h>
#include <vtkProp.h>
namespace temp_viz
{
@@ -13,6 +13,6 @@ namespace temp_viz
struct CV_EXPORTS WidgetAccessor
{
static vtkSmartPointer<vtkProp> getProp(const Widget &widget);
static void setProp(Widget &widget, vtkSmartPointer<vtkProp> actor);
static void setProp(Widget &widget, vtkSmartPointer<vtkProp> prop);
};
}

View File

@@ -15,7 +15,6 @@ namespace temp_viz
Widget& operator =(const Widget &other);
~Widget();
private:
class Impl;
Impl *impl_;