1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
void GetFoo(void) const { return (m_Foo); } int GetFoo(void) throw (std::bad_alloc) { return (m_Foo); } class foo { void bar(void) const; };