remove reference counting in widgets

This commit is contained in:
ozantonkal
2013-08-24 15:12:16 +02:00
committed by Ozan Tonkal
parent 08917908f3
commit ed0162ad0b
2 changed files with 1 additions and 48 deletions

View File

@@ -14,9 +14,6 @@ namespace cv
{
public:
Widget();
Widget(const Widget &other);
Widget& operator =(const Widget &other);
~Widget();
static Widget fromPlyFile(const String &file_name);
@@ -28,9 +25,6 @@ namespace cv
class Impl;
Impl *impl_;
friend struct WidgetAccessor;
void create();
void release();
};
/////////////////////////////////////////////////////////////////////////////