Aegis  4.25.D505
libaegis/ael/change/details.h
Go to the documentation of this file.
00001 //
00002 //      aegis - project change supervisor
00003 //      Copyright (C) 1999, 2002-2004, 2006-2008 Peter Miller
00004 //
00005 //      This program is free software; you can redistribute it and/or modify
00006 //      it under the terms of the GNU General Public License as published by
00007 //      the Free Software Foundation; either version 3 of the License, or
00008 //      (at your option) any later version.
00009 //
00010 //      This program is distributed in the hope that it will be useful,
00011 //      but WITHOUT ANY WARRANTY; without even the implied warranty of
00012 //      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00013 //      GNU General Public License for more details.
00014 //
00015 //      You should have received a copy of the GNU General Public License
00016 //      along with this program. If not, see
00017 //      <http://www.gnu.org/licenses/>.
00018 //
00019 
00020 #ifndef LIBAEGIS_AEL_CHANGE_DETAILS_H
00021 #define LIBAEGIS_AEL_CHANGE_DETAILS_H
00022 
00023 #include <libaegis/change.h>
00024 #include <libaegis/col.h>
00025 
00026 struct output_ty; // forward
00027 struct string_ty; // forward
00028 struct string_list_ty; // forward
00029 class change_identifier; // forward
00030 
00036 class list_change_details_columns
00037 {
00038 public:
00042     ~list_change_details_columns();
00043 
00047     list_change_details_columns();
00048 
00058     void list(change::pointer cp, bool recurse);
00059 
00060 private:
00061     col::pointer colp;
00062 
00063     // general columns
00064     output::pointer head_col;
00065     output::pointer body_col;
00066 
00070     list_change_details_columns(const list_change_details_columns &);
00071 
00075     list_change_details_columns &operator=(const list_change_details_columns &);
00076 };
00077 
00086 void list_change_details(change_identifier &cid, string_list_ty *arguments);
00087 
00088 #endif // LIBAEGIS_AEL_CHANGE_DETAILS_H