automakemanager.h
Go to the documentation of this file.00001 /*************************************************************************** 00002 * Copyright (C) 2001-2002 by Bernd Gehrmann * 00003 * bernd@kdevelop.org * 00004 * * 00005 * Copyright (C) 2002 by Victor Röder * 00006 * victor_roeder@gmx.de * 00007 * * 00008 * This program is free software; you can redistribute it and/or modify * 00009 * it under the terms of the GNU General Public License as published by * 00010 * the Free Software Foundation; either version 2 of the License, or * 00011 * (at your option) any later version. * 00012 * * 00013 ***************************************************************************/ 00014 00015 #ifndef AUTOMAKEMANAGER_H 00016 #define AUTOMAKEMANAGER_H 00017 00018 class SubprojectItem; 00019 class TargetItem; 00020 00021 class AutomakeManager 00022 { 00023 public: 00024 AutomakeManager(); 00025 virtual ~AutomakeManager(); 00026 00027 // public: 00028 // addFileToTarget ( const QString& file, SubprojectItem* spitem, TargetItem* titem ); 00029 // removeFileFromTarget ( const QString& file, SubprojectItem* spitem, TargetItem* titem ); 00030 // 00031 // addTargetToSubproject ( const TargetItem& titem, SubprojectItem* spitem ); 00032 // removeTargetFromSubproject ( const TargetItem& titem, SubprojectItem* spitem ); 00033 // 00034 // addSubprojectToSubproject ( const SubprojectItem& spitemAdd, SubprojectItem* spitemTo ); 00035 // removeSubprojectFromSubproject ( const SubprojectItem& spitemRemove, SubprojectItem* spitemFrom ); 00036 }; 00037 00038 00039 #endif