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.
codeine/src/app/config.h

21 lines
416 B

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