/*************************************************************************** * Copyright (C) 2000-2001 by Bernd Gehrmann * * bernd@kdevelop.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ #include #include #include "appwizardfactory.h" static const TDevPluginInfo data("tdevappwizard"); K_EXPORT_COMPONENT_FACTORY( libtdevappwizard, AppWizardFactory ) AppWizardFactory::AppWizardFactory() : TDevGenericFactory( data ) { } TDEInstance *AppWizardFactory::createInstance() { TDEInstance *instance = TDevGenericFactory::createInstance(); TDEStandardDirs *dirs = instance->dirs(); dirs->addResourceType("apptemplates", TDEStandardDirs::kde_default("data") + "tdevappwizard/templates/"); dirs->addResourceType("appimports", TDEStandardDirs::kde_default("data") + "tdevappwizard/imports/"); dirs->addResourceType("appimportfiles", TDEStandardDirs::kde_default("data") + "tdevappwizard/importfiles/"); return instance; } const TDevPluginInfo *AppWizardFactory::info() { return &data; }