// file : build/module -*- C++ -*- // copyright : Copyright (c) 2014-2015 Code Synthesis Ltd // license : MIT; see accompanying LICENSE file #ifndef BUILD_MODULE #define BUILD_MODULE #include #include namespace build { class scope; class location; using module_init_function = void (scope& root, scope& base, const location&); using module_map = std::unordered_map; extern module_map modules; } #endif // BUILD_MODULE