#include "le_resident_name_table_entry.hpp" #include "parse.hpp" #include "output.hpp" #include BOOST_FUSION_ADAPT_STRUCT( le::ResidentNameTableEntry, (binparse::PString8, string) (binparse::Value16, index) ) namespace le { ResidentNameTableEntry parse_resident_name_table_entry(std::istream& is) { return binparse::parse(is); } std::ostream&operator<<(std::ostream& os, ResidentNameTableEntry const& entry) { return binparse::operator<<(os, entry); } }