You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

17 lines
463 B

/**
* @short The source of information about the Generator
*
* The goal of this class is to provide per Generator settings,
* about data and other stuff not related with generating oKular
* content, but still needed for a full-featured plugin system.
*
*/
class Informator
{
virtual QString iconName() = 0;
virtual void addConfigurationPages ( KConfigDialog* cfg ) = 0;
virtual KAboutData about();
virtual QStringList mimetypes() = 0;
}