Lugdunum  0.1.0
Module.inl
Go to the documentation of this file.
1 inline std::ostream& operator<<(std::ostream& ss, const Module& module) {
2  ss << module.name;
3  return ss;
4 }
5 
6 inline std::ostream& operator<<(std::ostream& ss, const Module::Type& type) {
7  ss << modules.at(type).name;
8  return ss;
9 }
std::ostream & operator<<(std::ostream &ss, const Module &module)
Definition: Module.inl:1
const std::unordered_map< Module::Type, Module > modules
Definition: Module.cpp:6