Skip to content
Snippets Groups Projects
Commit e714f378 authored by Philippe Hoch's avatar Philippe Hoch
Browse files

Add composite_scheme module

parent bc43bd20
Branches
No related tags found
No related merge requests found
......@@ -4,6 +4,7 @@ add_library(
PugsLanguageModules
BinaryOperatorRegisterForVh.cpp
BuiltinModule.cpp
CompositeSchemeModule.cpp
CoreModule.cpp
DevUtilsModule.cpp
LinearSolverModule.cpp
......
This diff is collapsed.
#ifndef COMPOSITE_SCHEME_MODULE_HPP
#define COMPOSITE_SCHEME_MODULE_HPP
#include <language/modules/BuiltinModule.hpp>
class CompositeSchemeModule : public BuiltinModule
{
public:
std::string_view
name() const final
{
return "composite_scheme";
}
void registerOperators() const final;
void registerCheckpointResume() const final;
CompositeSchemeModule();
~CompositeSchemeModule() = default;
};
#endif // COMPOSITE_SCHEME_MODULE_HPP
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment