#ifndef _IFTRACK_H_ #define _IFTRACK_H_ /** * This abstract class serves as an interface for the presentation of tracks. * @short Track Interface * @author Jan Wuerthner * @version 0.95 * @see KbTrack * @see QtTrack */ class IfTrack { public: IfTrack(); virtual void erase(); }; #endif