// (c) 2004 Max Howell (max.howell@methylblue.com) // See COPYING file for licensing information #ifndef CODEINECONFIG_H #define CODEINECONFIG_H #include #include namespace Codeine { static inline KConfig *config( const QString &group ) { KConfig* const instance = KGlobal::config(); instance->setGroup( group ); return instance; } } #endif