SourceXtractorPlusPlus 1.0.3
SourceXtractor++, the next generation SExtractor
Loading...
Searching...
No Matches
OutputFactory.h
Go to the documentation of this file.
1
22
23#ifndef _SEIMPLEMENTATION_OUTPUT_OUTPUTFACTORY_H
24#define _SEIMPLEMENTATION_OUTPUT_OUTPUTFACTORY_H
25
29
30namespace SourceXtractor {
31
38
39public:
40
42 : m_output_registry(output_registry), m_flush_size(100), m_output_format(OutputConfig::OutputFileFormat::ASCII) {
43 }
44
46 virtual ~OutputFactory() = default;
47
49
50 // Implementation of the Configurable interface
51 void configure(Euclid::Configuration::ConfigManager& manager) override;
53
54private:
58
61
62}; /* End of OutputFactory class */
63
64} /* namespace SourceXtractor */
65
66
67#endif
Interface of objects which can be configured.
void configure(Euclid::Configuration::ConfigManager &manager) override
Method which should initialize the object.
OutputConfig::OutputFileFormat m_output_format
std::shared_ptr< OutputRegistry > m_output_registry
std::vector< std::string > m_output_properties
void reportConfigDependencies(Euclid::Configuration::ConfigManager &manager) const override
Registers all the Configuration dependencies.
OutputFactory(std::shared_ptr< OutputRegistry > output_registry)
std::shared_ptr< Output > createOutput() const
virtual ~OutputFactory()=default
Destructor.