mirror of
https://github.com/polybar/polybar.git
synced 2024-10-27 05:23:39 -04:00
3561fd3ad1
Saves us a lot of code duplication by generating module type-indexed map and factory functions from the module class names.
24 lines
638 B
C++
24 lines
638 B
C++
#pragma once
|
|
|
|
#include "common.hpp"
|
|
#include "components/logger.hpp"
|
|
#include "components/types.hpp"
|
|
#include "modules/meta/base.hpp"
|
|
|
|
POLYBAR_NS
|
|
|
|
namespace modules {
|
|
using module_t = shared_ptr<module_interface>;
|
|
|
|
/**
|
|
* Creates a new module instance.
|
|
*
|
|
* @param type The type of the module (as given by each module's TYPE field)
|
|
* @param bar An instance of the @ref bar_settings
|
|
* @param module_name The user-specified module name
|
|
* @param log A @ref logger instance
|
|
*/
|
|
module_t make_module(string&& type, const bar_settings& bar, string module_name, const logger& log);
|
|
} // namespace modules
|
|
|
|
POLYBAR_NS_END
|