Last change
on this file since 847 was
847,
checked in by Peter Johansson, 13 years ago
|
updating copyrights
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Id
|
File size:
1.1 KB
|
Line | |
---|
1 | // $Id: Functor.cc 847 2009-11-17 01:38:52Z peter $ |
---|
2 | |
---|
3 | /* |
---|
4 | Copyright (C) 2006, 2007, 2008 Jari Häkkinen, Peter Johansson |
---|
5 | |
---|
6 | This file is part of svndigest, http://dev.thep.lu.se/svndigest |
---|
7 | |
---|
8 | svndigest is free software; you can redistribute it and/or modify it |
---|
9 | under the terms of the GNU General Public License as published by |
---|
10 | the Free Software Foundation; either version 3 of the License, or |
---|
11 | (at your option) any later version. |
---|
12 | |
---|
13 | svndigest is distributed in the hope that it will be useful, but |
---|
14 | WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
---|
16 | General Public License for more details. |
---|
17 | |
---|
18 | You should have received a copy of the GNU General Public License |
---|
19 | along with svndigest. If not, see <http://www.gnu.org/licenses/>. |
---|
20 | */ |
---|
21 | |
---|
22 | #include "Functor.h" |
---|
23 | |
---|
24 | #include <string> |
---|
25 | |
---|
26 | namespace theplu{ |
---|
27 | namespace svndigest{ |
---|
28 | |
---|
29 | notChar::notChar(char c) |
---|
30 | : char_(c) |
---|
31 | {} |
---|
32 | |
---|
33 | |
---|
34 | not2Char::not2Char(char c1, char c2) |
---|
35 | : char1_(c1), char2_(c2) |
---|
36 | {} |
---|
37 | |
---|
38 | |
---|
39 | not2Str::not2Str(std::string s1, std::string s2) |
---|
40 | : str1_(s1), str2_(s2) |
---|
41 | {} |
---|
42 | |
---|
43 | }} // end of namespace svndigest and namespace theplu |
---|
Note: See
TracBrowser
for help on using the repository browser.