Home | History | Annotate | Download | only in gdb.cp

Lines Matching refs:base1

276 class base1 : public virtual base
279 base1 (void) : foo_ (21) { } // base1::base1(void)
280 base1 (int a) : foo_(a) { } // base1::base1(int)
281 void a_function (void) const { } // base1::a_function
297 class derived : public base1, public base2
302 this->base1::a_function ();
446 base1 b1 (3);