SourceXtractorPlusPlus  0.11
Please provide a description of the project.
VignetTaskFactory.h
Go to the documentation of this file.
1 
24 #ifndef _SEIMPLEMENTATION_PLUGIN_VIGNETTASKFACTORY_H_
25 #define _SEIMPLEMENTATION_PLUGIN_VIGNETTASKFACTORY_H_
26 
27 #include <limits>
29 
30 namespace SourceXtractor {
32 public:
34 
35  virtual ~VignetTaskFactory() = default;
36 
38 
39  void configure(Euclid::Configuration::ConfigManager& manager) override;
40 
41  // TaskFactory implementation
42  std::shared_ptr<Task> createTask(const PropertyId& property_id) const override;
43 
44 private:
48 }; // end of VignetTaskFactory class
49 
50 } // namespace SourceXtractor
51 #endif /* _SEIMPLEMENTATION_PLUGIN_VIGNETTASKFACTORY_H_ */
std::vector< unsigned > m_images
STL namespace.
virtual ~VignetTaskFactory()=default
Creates a Task for computing a given property.
Definition: TaskFactory.h:42
Identifier used to set and retrieve properties.
Definition: PropertyId.h:40
void reportConfigDependencies(Euclid::Configuration::ConfigManager &manager) const override
Registers all the Configuration dependencies.
void configure(Euclid::Configuration::ConfigManager &manager) override
Method which should initialize the object.
std::shared_ptr< Task > createTask(const PropertyId &property_id) const override
Returns a Task producing a Property corresponding to the given PropertyId.