bin/svncopyrightParameter.h

Code
Comments
Other
Rev Date Author Line
1060 02 Jun 10 peter 1 #ifndef _theplu_svndigest_svncopyright_parameter_
1060 02 Jun 10 peter 2 #define _theplu_svndigest_svncopyright_parameter_
1060 02 Jun 10 peter 3
1060 02 Jun 10 peter 4 // $Id$
1060 02 Jun 10 peter 5
1060 02 Jun 10 peter 6 /*
1635 30 Mar 23 peter 7   Copyright (C) 2010 Peter Johansson
1060 02 Jun 10 peter 8
1060 02 Jun 10 peter 9   This file is part of svndigest, http://dev.thep.lu.se/svndigest
1060 02 Jun 10 peter 10
1060 02 Jun 10 peter 11   svndigest is free software; you can redistribute it and/or modify it
1060 02 Jun 10 peter 12   under the terms of the GNU General Public License as published by
1060 02 Jun 10 peter 13   the Free Software Foundation; either version 3 of the License, or
1060 02 Jun 10 peter 14   (at your option) any later version.
1060 02 Jun 10 peter 15
1060 02 Jun 10 peter 16   svndigest is distributed in the hope that it will be useful, but
1060 02 Jun 10 peter 17   WITHOUT ANY WARRANTY; without even the implied warranty of
1060 02 Jun 10 peter 18   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
1060 02 Jun 10 peter 19   General Public License for more details.
1060 02 Jun 10 peter 20
1060 02 Jun 10 peter 21   You should have received a copy of the GNU General Public License
1060 02 Jun 10 peter 22   along with svndigest. If not, see <http://www.gnu.org/licenses/>.
1060 02 Jun 10 peter 23 */
1060 02 Jun 10 peter 24
1060 02 Jun 10 peter 25 #include "Parameter.h"
1060 02 Jun 10 peter 26
1119 04 Jul 10 peter 27 #include "lib/OptionVersion.h"
1060 02 Jun 10 peter 28
1673 26 Aug 23 peter 29 #include <yat/utility/CommandLine.h>
1673 26 Aug 23 peter 30 #include <yat/utility/OptionArg.h>
1673 26 Aug 23 peter 31 #include <yat/utility/OptionHelp.h>
1673 26 Aug 23 peter 32 #include <yat/utility/OptionSwitch.h>
1060 02 Jun 10 peter 33
1060 02 Jun 10 peter 34 #include <string>
1060 02 Jun 10 peter 35
1060 02 Jun 10 peter 36 namespace theplu {
1060 02 Jun 10 peter 37 namespace svndigest {
1060 02 Jun 10 peter 38
1060 02 Jun 10 peter 39   // class for command line options.
1513 23 Sep 12 peter 40   class svncopyrightParameter : public Parameter
1060 02 Jun 10 peter 41   {
1060 02 Jun 10 peter 42   public:
1060 02 Jun 10 peter 43     svncopyrightParameter(void);
1060 02 Jun 10 peter 44     void analyse2(void);
1060 02 Jun 10 peter 45     void init2(void);
1060 02 Jun 10 peter 46     void set_default2(void);
1060 02 Jun 10 peter 47
1060 02 Jun 10 peter 48   private:
1060 02 Jun 10 peter 49   };
1060 02 Jun 10 peter 50
1060 02 Jun 10 peter 51 }} // of namespace svndigest and namespace theplu
1060 02 Jun 10 peter 52
1060 02 Jun 10 peter 53 #endif