62 |
19 Jan 06 |
peter |
// $Id$ |
62 |
19 Jan 06 |
peter |
2 |
|
84 |
13 Mar 06 |
jari |
3 |
/* |
978 |
12 Dec 09 |
peter |
Copyright (C) 2006, 2007, 2008 Jari Häkkinen, Peter Johansson |
1635 |
30 Mar 23 |
peter |
Copyright (C) 2023 Peter Johansson |
84 |
13 Mar 06 |
jari |
6 |
|
687 |
04 Aug 08 |
peter |
This file is part of svndigest, http://dev.thep.lu.se/svndigest |
84 |
13 Mar 06 |
jari |
8 |
|
149 |
12 Aug 06 |
jari |
svndigest is free software; you can redistribute it and/or modify it |
84 |
13 Mar 06 |
jari |
under the terms of the GNU General Public License as published by |
693 |
11 Sep 08 |
jari |
the Free Software Foundation; either version 3 of the License, or |
84 |
13 Mar 06 |
jari |
(at your option) any later version. |
84 |
13 Mar 06 |
jari |
13 |
|
149 |
12 Aug 06 |
jari |
svndigest is distributed in the hope that it will be useful, but |
84 |
13 Mar 06 |
jari |
WITHOUT ANY WARRANTY; without even the implied warranty of |
149 |
12 Aug 06 |
jari |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
84 |
13 Mar 06 |
jari |
General Public License for more details. |
84 |
13 Mar 06 |
jari |
18 |
|
84 |
13 Mar 06 |
jari |
You should have received a copy of the GNU General Public License |
693 |
11 Sep 08 |
jari |
along with svndigest. If not, see <http://www.gnu.org/licenses/>. |
84 |
13 Mar 06 |
jari |
21 |
*/ |
84 |
13 Mar 06 |
jari |
22 |
|
1619 |
12 Mar 23 |
peter |
23 |
#include <config.h> |
1619 |
12 Mar 23 |
peter |
24 |
|
465 |
24 Aug 07 |
peter |
25 |
#include "Functor.h" |
62 |
19 Jan 06 |
peter |
26 |
|
62 |
19 Jan 06 |
peter |
27 |
#include <string> |
62 |
19 Jan 06 |
peter |
28 |
|
62 |
19 Jan 06 |
peter |
29 |
namespace theplu{ |
149 |
12 Aug 06 |
jari |
30 |
namespace svndigest{ |
62 |
19 Jan 06 |
peter |
31 |
|
289 |
08 May 07 |
peter |
32 |
notChar::notChar(char c) |
289 |
08 May 07 |
peter |
33 |
: char_(c) |
289 |
08 May 07 |
peter |
34 |
{} |
289 |
08 May 07 |
peter |
35 |
|
289 |
08 May 07 |
peter |
36 |
|
289 |
08 May 07 |
peter |
37 |
not2Char::not2Char(char c1, char c2) |
289 |
08 May 07 |
peter |
38 |
: char1_(c1), char2_(c2) |
289 |
08 May 07 |
peter |
39 |
{} |
289 |
08 May 07 |
peter |
40 |
|
1513 |
23 Sep 12 |
peter |
41 |
|
294 |
08 May 07 |
peter |
42 |
not2Str::not2Str(std::string s1, std::string s2) |
294 |
08 May 07 |
peter |
43 |
: str1_(s1), str2_(s2) |
294 |
08 May 07 |
peter |
44 |
{} |
1513 |
23 Sep 12 |
peter |
45 |
|
149 |
12 Aug 06 |
jari |
46 |
}} // end of namespace svndigest and namespace theplu |