1 class Asm; 2 template<typename _CharT> class basic_ostream; 3 typedef basic_ostream<char> ostream; 4 class Options { 5 typedef void (Asm::* emitfunc_t) (ostream &); getemit()6 emitfunc_t getemit () const { return emitfunc; } 7 emitfunc_t emitfunc; 8 }; 9