SourceXtractorPlusPlus  0.15
Please provide a description of the project.
ShapeParametersTaskFactory.h
Go to the documentation of this file.
1 
17 /*
18  * ShapeParametersTaskFactory.h
19  *
20  * Created on: Jan 27, 2017
21  * Author: mschefer
22  */
23 
24 #ifndef _SEIMPLEMENTATION_PLUGIN_SHAPEPARAMETERS_SHAPEPARAMETERSTASKFACTORY_H_
25 #define _SEIMPLEMENTATION_PLUGIN_SHAPEPARAMETERS_SHAPEPARAMETERSTASKFACTORY_H_
26 
28 
29 namespace SourceXtractor {
30 
32 public:
34 
36  virtual ~ShapeParametersTaskFactory() = default;
37 
38  // TaskFactory implementation
39  virtual std::shared_ptr<Task> createTask(const PropertyId& property_id) const override;
40 };
41 
42 
43 } /* namespace SourceXtractor */
44 
45 
46 
47 #endif /* _SEIMPLEMENTATION_PLUGIN_SHAPEPARAMETERS_SHAPEPARAMETERSTASKFACTORY_H_ */
Identifier used to set and retrieve properties.
Definition: PropertyId.h:40
virtual std::shared_ptr< Task > createTask(const PropertyId &property_id) const override
Returns a Task producing a Property corresponding to the given PropertyId.
virtual ~ShapeParametersTaskFactory()=default
Destructor.
Creates a Task for computing a given property.
Definition: TaskFactory.h:42