Select Git revision
UtilsModule.hpp
-
Stéphane Del Pino authored
Now modules can/must register the operators they provide
Stéphane Del Pino authoredNow modules can/must register the operators they provide
UtilsModule.hpp 338 B
#ifndef UTILS_MODULE_HPP
#define UTILS_MODULE_HPP
#include <language/modules/BuiltinModule.hpp>
class UtilsModule : public BuiltinModule
{
public:
std::string_view
name() const final
{
return "utils";
}
void registerOperators() const final;
UtilsModule();
~UtilsModule() = default;
};
#endif // UTILS_MODULE_HPP