SourceXtractorPlusPlus  0.11
Please provide a description of the project.
OutputFactory.h
Go to the documentation of this file.
1 
23 #ifndef _SEIMPLEMENTATION_OUTPUT_OUTPUTFACTORY_H
24 #define _SEIMPLEMENTATION_OUTPUT_OUTPUTFACTORY_H
25 
28 #include "TableOutput.h"
29 
30 namespace SourceXtractor {
31 
37 class OutputFactory : public Configurable {
38 
39 public:
40 
42  m_flush_size(100) {
43  }
44 
45 
47  virtual ~OutputFactory() = default;
48 
50 
51  // Implementation of the Configurable interface
52  void configure(Euclid::Configuration::ConfigManager& manager) override;
54 
55 private:
56 
61  size_t m_flush_size;
62 
63 }; /* End of OutputFactory class */
64 
65 } /* namespace SourceXtractor */
66 
67 
68 #endif
void configure(Euclid::Configuration::ConfigManager &manager) override
Method which should initialize the object.
Interface of objects which can be configured.
Definition: Configurable.h:37
std::unique_ptr< Output > getOutput() const
std::shared_ptr< OutputRegistry > m_output_registry
Definition: OutputFactory.h:57
TableOutput::TableHandler m_table_handler
Definition: OutputFactory.h:58
TableOutput::SourceHandler m_source_handler
Definition: OutputFactory.h:59
void reportConfigDependencies(Euclid::Configuration::ConfigManager &manager) const override
Registers all the Configuration dependencies.
STL class.
std::vector< std::string > m_output_properties
Definition: OutputFactory.h:60
virtual ~OutputFactory()=default
Destructor.
OutputFactory(std::shared_ptr< OutputRegistry > output_registry)
Definition: OutputFactory.h:41