#ifndef _IFPART_H_ #define _IFPART_H_ /** * This abstract class serves as an interface for the presentation of parts. * @short Part Interface * @author Jan Wuerthner * @version 0.95 * @see KbPart * @see QtPart */ class IfPart { public: IfPart(); virtual void erase(); }; #endif