#include <reports.hpp>
Classes | |
| class | context |
| struct | generator |
Public Types | |
| using | generator_function = std::function< config(const reports::context &)> |
| typedef std::map< std::string, std::shared_ptr< reports::generator > > | dynamic_report_generators |
Public Member Functions | |
| void | register_generator (const std::string &name, generator *) |
| config | generate_report (const std::string &name, const context &ct) |
| Generate the specified report using the given context. More... | |
| config | generate_builtin_report (const std::string &name, const context &rc) |
| Generate the specified report using the given context, excluding dynamic generators. More... | |
| const std::set< std::string > & | report_list () |
Private Attributes | |
| std::set< std::string > | all_reports_ |
| dynamic_report_generators | dynamic_generators_ |
Definition at line 45 of file reports.hpp.
| typedef std::map<std::string, std::shared_ptr<reports::generator> > reports::dynamic_report_generators |
Definition at line 90 of file reports.hpp.
| using reports::generator_function = std::function<config(const reports::context&)> |
Definition at line 88 of file reports.hpp.
Generate the specified report using the given context, excluding dynamic generators.
Definition at line 1867 of file reports.cpp.
References static_generators.
Referenced by generate_report(), and game_lua_kernel::impl_theme_item().
Generate the specified report using the given context.
Definition at line 1857 of file reports.cpp.
References dynamic_generators_, and generate_builtin_report().
Referenced by display::refresh_report().
| void reports::register_generator | ( | const std::string & | name, |
| reports::generator * | g | ||
| ) |
Definition at line 1851 of file reports.cpp.
References all_reports_, dynamic_generators_, and g.
Referenced by game_lua_kernel::impl_theme_items_get(), and game_lua_kernel::impl_theme_items_set().
| const std::set< std::string > & reports::report_list | ( | ) |
Definition at line 1877 of file reports.cpp.
References all_reports_, dynamic_generators_, and static_generators.
Referenced by game_lua_kernel::impl_theme_items_dir(), and game_display::layout().
|
private |
Definition at line 94 of file reports.hpp.
Referenced by register_generator(), and report_list().
|
private |
Definition at line 96 of file reports.hpp.
Referenced by generate_report(), register_generator(), and report_list().