/* Implementacja Klasy APP */ app::app() { next=null; } app:app(app *nx) { set_next(nx); } app::set_next(app *nx) { if (nx!=NULL) { next=nx; } }