Wolframe, 0.0.3

Data definition language (DDL) compiler module
class MyDDLCompiler
{
public:
MyDDLCompiler()
:_Wolframe::langbind::DDLCompiler( "myddl", "mdl") {}
virtual std::vector<_Wolframe::types::FormDescriptionR> compile( const std::string& filename, const _Wolframe::types::NormalizeFunctionMap* typemap) const
{
// ... compile the source file filename and return the resulting form definitions here
}
};
WF_MODULE_BEGIN( "MyDDLCompiler", "compiler for my language describing data forms")
WF_DDLCOMPILER( "MyDDL", MyDDLCompiler)