Changeset 225 for trunk/bin/Parameter.h
- Timestamp:
- Mar 11, 2007, 12:41:51 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bin/Parameter.h
r198 r225 6 6 /* 7 7 Copyright (C) 2006 Jari Häkkinen, Peter Johansson 8 Copyright (C) 2007 Peter Johansson 8 9 9 10 This file is part of svndigest, http://lev.thep.lu.se/trac/svndigest … … 25 26 */ 26 27 28 #include <map> 27 29 #include <string> 28 30 … … 35 37 Parameter(const int argc,const char *argv[]); 36 38 inline bool copyright(void) const { return copyright_; } 39 /// @todo 40 inline const std::map<std::string, std::string> 41 copyright_alias(void) const { return copyright_alias_; } 37 42 inline bool force(void) const { return force_; } 38 43 inline bool revisions(void) const { return revisions_; } … … 50 55 51 56 bool copyright_; 57 std::map<std::string, std::string> copyright_alias_; 52 58 bool force_; 53 59 bool revisions_;
Note: See TracChangeset
for help on using the changeset viewer.