|
|
#ifndef _PRPART_H_ #define _PRPART_H_ class PrPart { public: PrPart() {}; /* updates the presentation. The "menu" flag can be set to force building new menus, like after a new addon has been loaded */ virtual void update(bool menu=false)=0; virtual void erase()=0; virtual void hide()=0; virtual void show()=0; }; #endif
Generated by: wuerthne on clouseau on Fri Sep 21 19:20:46 2001, using kdoc 2.0a53. |