// // aegis - project change supervisor // Copyright (C) 2003, 2005-2008 Peter Miller // // 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 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see // . // #ifndef LIBAEGIS_CHANGE_DIRECTORY_H #define LIBAEGIS_CHANGE_DIRECTORY_H #include /** * The change_directory_get function is used to get a directory for use * with the current command. If the change is between being_developed * and awaiting_integration, the change development directory will be * returned. If the change is being_integrated, the change integration * directory will be returned. Otherwise, the project baseline will * be returned, unless the branch has been closed, in which case the * branch tree will be ascended (possibly all the way to the trunk) * looking for a branch baseline which is still being developed. */ struct string_ty *change_directory_get(change::pointer cp, int resolve); #endif // LIBAEGIS_CHANGE_DIRECTORY_H