source: branches/0.7-stable/lib/copyright_year.cc @ 998

Last change on this file since 998 was 998, checked in by Peter Johansson, 14 years ago

Fixes #434. Authors are now ignored in the plot if and only if plot
would be y=0.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 974 bytes
Line 
1// $Id: copyright_year.cc 998 2010-01-01 22:54:32Z peter $
2
3/*
4  Copyright (C) 2008 Jari Häkkinen, Peter Johansson
5  Copyright (C) 2009 Peter Johansson
6
7  This file is part of svndigest, http://dev.thep.lu.se/svndigest
8
9  svndigest is free software; you can redistribute it and/or modify it
10  under the terms of the GNU General Public License as published by
11  the Free Software Foundation; either version 3 of the License, or
12  (at your option) any later version.
13
14  svndigest is distributed in the hope that it will be useful, but
15  WITHOUT ANY WARRANTY; without even the implied warranty of
16  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17  General Public License for more details.
18
19  You should have received a copy of the GNU General Public License
20  along with svndigest. If not, see <http://www.gnu.org/licenses/>.
21*/
22
23#include "copyright_year.h"
24#include <string>
25
26namespace theplu{
27namespace svndigest{
28
29  std::string svn_year(void)
30  {
31    return "2010";
32  }
33
34}} // end of namespace svndigest and namespace theplu
Note: See TracBrowser for help on using the repository browser.