#include int main(int argc, char **argv) { PanelTexto *helloW = new PanelTexto(10,20,300,180,"Hello","Hello, world!"); PanelTexto *hiW = new PanelTexto(100,200,200,200,"Hi","Hi friends!"); helloW->cambiarTexto("¡Hola mundo!"); return Fl::run(); }