[165] | 1 | #ifndef _theplu_svndigest_parameter_ |
---|
| 2 | #define _theplu_svndigest_parameter_ |
---|
| 3 | |
---|
[37] | 4 | // $Id: Parameter.h 240 2007-04-28 01:43:54Z peter $ |
---|
| 5 | |
---|
[84] | 6 | /* |
---|
| 7 | Copyright (C) 2006 Jari Häkkinen, Peter Johansson |
---|
[225] | 8 | Copyright (C) 2007 Peter Johansson |
---|
[84] | 9 | |
---|
[149] | 10 | This file is part of svndigest, http://lev.thep.lu.se/trac/svndigest |
---|
[84] | 11 | |
---|
[149] | 12 | svndigest is free software; you can redistribute it and/or modify it |
---|
[84] | 13 | under the terms of the GNU General Public License as published by |
---|
| 14 | the Free Software Foundation; either version 2 of the License, or |
---|
| 15 | (at your option) any later version. |
---|
| 16 | |
---|
[149] | 17 | svndigest is distributed in the hope that it will be useful, but |
---|
[84] | 18 | WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
[149] | 19 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
---|
[84] | 20 | General Public License for more details. |
---|
| 21 | |
---|
| 22 | You should have received a copy of the GNU General Public License |
---|
| 23 | along with this program; if not, write to the Free Software |
---|
| 24 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA |
---|
| 25 | 02111-1307, USA. |
---|
| 26 | */ |
---|
| 27 | |
---|
[225] | 28 | #include <map> |
---|
[37] | 29 | #include <string> |
---|
| 30 | |
---|
| 31 | namespace theplu { |
---|
[149] | 32 | namespace svndigest { |
---|
[37] | 33 | |
---|
| 34 | // class for command line options. |
---|
| 35 | class Parameter { |
---|
| 36 | public: |
---|
| 37 | Parameter(const int argc,const char *argv[]); |
---|
[240] | 38 | std::string config_file(void) const; |
---|
[198] | 39 | inline bool copyright(void) const { return copyright_; } |
---|
[225] | 40 | /// @todo |
---|
[37] | 41 | inline bool force(void) const { return force_; } |
---|
[229] | 42 | inline bool generate_config(void) const { return generate_config_; } |
---|
[73] | 43 | inline bool revisions(void) const { return revisions_; } |
---|
[116] | 44 | /// @return absolute path to root directory |
---|
[37] | 45 | inline const std::string& root(void) const { return root_; } |
---|
[116] | 46 | /// @return absolute path to target directory |
---|
[49] | 47 | inline const std::string& targetdir(void) const { return targetdir_; } |
---|
[37] | 48 | inline bool verbose(void) const { return verbose_; } |
---|
| 49 | |
---|
| 50 | private: |
---|
| 51 | void analyse(void); |
---|
[73] | 52 | void defaults(void); |
---|
[37] | 53 | void help(void); |
---|
[98] | 54 | void version(void) const; |
---|
[37] | 55 | |
---|
[229] | 56 | std::string config_file_; |
---|
[198] | 57 | bool copyright_; |
---|
[37] | 58 | bool force_; |
---|
[229] | 59 | bool generate_config_; |
---|
[73] | 60 | bool revisions_; |
---|
[37] | 61 | std::string root_; |
---|
[49] | 62 | std::string targetdir_; |
---|
[37] | 63 | bool verbose_; |
---|
| 64 | }; |
---|
| 65 | |
---|
[149] | 66 | }} // of namespace svndigest and namespace theplu |
---|
[37] | 67 | |
---|
| 68 | #endif |
---|