gitg/libgitg-ext/gitg-ext-command-line.vala
Jesse van den Kieboom 33368f1f27 Added support for plugin command line options
The history plugin now implements the --all flag
2012-07-18 11:03:45 +02:00

29 lines
839 B
Vala

/*
* This file is part of gitg
*
* Copyright (C) 2012 - Jesse van den Kieboom
*
* gitg 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.
*
* gitg 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 gitg. If not, see <http://www.gnu.org/licenses/>.
*/
namespace GitgExt
{
public interface CommandLine : Object
{
public abstract OptionGroup get_option_group();
}
}
// vi:ts=4