SourceXtractorPlusPlus 1.0.3
SourceXtractor++, the next generation SExtractor
Loading...
Searching...
No Matches
ReferenceCoordinatesTaskFactory.h
Go to the documentation of this file.
1
17
18#ifndef _SEIMPLEMENTATION_PLUGIN_REFERENCECOORDINATES_REFERENCECOORDINATESTASKFACTORY_H_
19#define _SEIMPLEMENTATION_PLUGIN_REFERENCECOORDINATES_REFERENCECOORDINATESTASKFACTORY_H_
20
21
23
24namespace SourceXtractor {
25
27
32
34
35public:
36
39
40 // TaskFactory implementation
41 std::shared_ptr<Task> createTask(const PropertyId& property_id) const override;
42
44 void configure(Euclid::Configuration::ConfigManager& manager) override;
45
46private:
48};
49
50} /* namespace SourceXtractor */
51
52#endif /* _SEIMPLEMENTATION_PLUGIN_REFERENCECOORDINATES_REFERENCECOORDINATESTASKFACTORY_H_ */
Identifier used to set and retrieve properties.
Definition PropertyId.h:40
void configure(Euclid::Configuration::ConfigManager &manager) override
Method which should initialize the object.
virtual ~ReferenceCoordinatesTaskFactory()=default
Destructor.
void reportConfigDependencies(Euclid::Configuration::ConfigManager &manager) const override
Registers all the Configuration dependencies.
std::shared_ptr< Task > createTask(const PropertyId &property_id) const override
Returns a Task producing a Property corresponding to the given PropertyId.
Creates a Task for computing a given property.
Definition TaskFactory.h:42