| 20 | #include "IPLProcess.h" |
| 21 | |
| 22 | IPLProcess::IPLProcess(void) |
| 23 | { |
| 24 | _isSource = false; |
| 25 | _isSequence = false; |
| 26 | _resultReady = false; |
| 27 | _updateNeeded = true; |
| 28 | _openCVSupport = IPLProcess::OPENCV_NONE; |
| 29 | _progressHandler = NULL; |
| 30 | _propertyHandler = NULL; |
| 31 | _outputsHandler = NULL; |
| 32 | _category = IPLProcess::CATEGORY_UNDEFINED; |
| 33 | |
| 34 | //_properties["title"].reset(new IPLProcessPropertyString(this, -1, "Title", "", _title, IPL_WIDGET_TITLE)); |
| 35 | } |
| 36 | |
| 37 | //! copy constructor |
| 38 | IPLProcess::IPLProcess(const IPLProcess &other) |