#include <abstract_tool.h>
Public Member Functions | |
virtual CloudCommand * | createCommand (QList< const CloudComposerItem * > input_data) |
virtual QString | getToolName () const |
NewItemTool (PropertiesModel *parameter_model, QObject *parent) | |
virtual QList < CloudComposerItem * > | performAction (QList< const CloudComposerItem * > input_data, PointTypeFlags::PointType type=PointTypeFlags::NONE)=0 |
Function called which does work in plugin. | |
virtual | ~NewItemTool () |
Definition at line 114 of file abstract_tool.h.
pcl::cloud_composer::NewItemTool::NewItemTool | ( | PropertiesModel * | parameter_model, |
QObject * | parent | ||
) | [inline] |
Definition at line 118 of file abstract_tool.h.
virtual pcl::cloud_composer::NewItemTool::~NewItemTool | ( | ) | [inline, virtual] |
Definition at line 122 of file abstract_tool.h.
virtual CloudCommand* pcl::cloud_composer::NewItemTool::createCommand | ( | QList< const CloudComposerItem * > | input_data | ) | [inline, virtual] |
Implements pcl::cloud_composer::AbstractTool.
Definition at line 128 of file abstract_tool.h.
virtual QString pcl::cloud_composer::NewItemTool::getToolName | ( | ) | const [inline, virtual] |
Implements pcl::cloud_composer::AbstractTool.
Reimplemented in pcl::cloud_composer::FPFHEstimationTool, and pcl::cloud_composer::NormalEstimationTool.
Definition at line 134 of file abstract_tool.h.
virtual QList<CloudComposerItem*> pcl::cloud_composer::NewItemTool::performAction | ( | QList< const CloudComposerItem * > | input_data, |
PointTypeFlags::PointType | type = PointTypeFlags::NONE |
||
) | [pure virtual] |
Function called which does work in plugin.
data | input_data from the model - const for good reason Returned list will become the output, replacing input_data in the model - you must deep copy the input_data, since undo works by switching back and forth |
Implements pcl::cloud_composer::AbstractTool.
Implemented in pcl::cloud_composer::FPFHEstimationTool, and pcl::cloud_composer::NormalEstimationTool.