#include "shape.h" int main() { shape* s = new shape(); rectangle* rec = new rectangle(2, 3); shape* s2; s2 = s; s2->draw(); s2 = rec; s2->draw(); }