SourceXtractorPlusPlus 1.0.3
SourceXtractor++, the next generation SExtractor
Loading...
Searching...
No Matches
DetectionFrameGroupStampTaskFactory.h
Go to the documentation of this file.
1
17/*
18 * DetectionFrameGroupStampTaskFactory.h
19 *
20 * Created on: May 5, 2017
21 * Author: mschefer
22 */
23
24#ifndef _SEIMPLEMENTATION_PLUGIN_DETECTIONFRAMEGROUPSTAMP_DETECTIONFRAMEGROUPSTAMPTASKFACTORY_H_
25#define _SEIMPLEMENTATION_PLUGIN_DETECTIONFRAMEGROUPSTAMP_DETECTIONFRAMEGROUPSTAMPTASKFACTORY_H_
26
27
29
30namespace SourceXtractor {
31
33
38
40
41public:
42
45
46 // TaskFactory implementation
47 std::shared_ptr<Task> createTask(const PropertyId& property_id) const override;
48
49};
50
51} /* namespace SourceXtractor */
52
53
54
55
56
57#endif /* _SEIMPLEMENTATION_PLUGIN_DETECTIONFRAMEGROUPSTAMP_DETECTIONFRAMEGROUPSTAMPTASKFACTORY_H_ */
std::shared_ptr< Task > createTask(const PropertyId &property_id) const override
Returns a Task producing a Property corresponding to the given PropertyId.
virtual ~DetectionFrameGroupStampTaskFactory()=default
Destructor.
Task to produce the DetectionFrameGroupStamp Property.
Identifier used to set and retrieve properties.
Definition PropertyId.h:40
Creates a Task for computing a given property.
Definition TaskFactory.h:42