There are two classes, the second class inherits the first. There are virtual functions in the base class and no virtual functions in the heir. What will be in the table of virtual functions of a class of the successor, is it empty or not created at all?
class base { private: int m_d; public: virtual void foo(); virtual void bar(); }; class derived : public base { int m_b; void baz(); };