#ifndef _IFEDITOR_H_ #define _IFEDITOR_H_ /** * This abstract class serves as an interface for an editor * @short Editor Interface * @author Jan Wuerthner * @version 0.95 * @see QtEditor */ class IfEditor { public: IfEditor(); IfEditor(char *); }; #endif