// // aegis - project change supervisor // Copyright (C) 2004, 2006-2008, 2012 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_SUB_CHANGE_REVIEWR_LIST_H #define LIBAEGIS_SUB_CHANGE_REVIEWR_LIST_H class sub_context_ty; // forward class wstring; // forward class wstring_list; // forward /** * The sub_change_reviewer_list function implements the * Change_Reviewer_List substitution. The change_reviewer_list * substitution is replaced by the list of reviewers of this change * since the last develop end. * * \param scp * The context of this substitution. * \param arg * The list of arguments, including the function name as [0] * \returns * a pointer to a string in dynamic memory; * or NULL on error, setting suberr appropriately. */ wstring sub_change_reviewer_list(sub_context_ty *scp, const wstring_list &arg); #endif // LIBAEGIS_SUB_CHANGE_REVIEWR_LIST_H // vim: set ts=8 sw=4 et :