1 /*
2     colortail -- output last part of file(s) in color.
3     Copyright (C) 1999  Joakim Andersson <pt98jan@student.hk-r.se>
4 
5     This program is free software; you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation; either version 2 of the License, or
8     (at your option) any later version.
9 
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14 
15     You should have received a copy of the GNU General Public License
16     along with this program; if not, write to the Free Software
17     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18 */
19 
20 #include <iostream>
21 
22 #include "Info.h"
23 #include "config.h"
24 
25 using namespace std;
26 
Info()27 Info::Info()
28 {
29 }
30 
~Info()31 Info::~Info()
32 {
33 }
34 
35 // prints info about colortail
print()36 void Info::print()
37 {
38    cout << "Colortail version <" << COLORTAIL_VERSION << ">" << endl;
39    cout << "Copyright (C) 2009 Joakim Andersson <ja@joakimandersson.se>" << endl;
40    cout << "Colortail comes with ABSOLUTELY NO WARRANTY; for details see the COPYING file." << endl;
41    cout << "This is free software, and you are welcome to redistribute it" << endl;
42    cout << "under certain conditions; see the COPYING file for details." << endl;
43 }
44 
45 
46 
47 
48 
49 
50 
51 
52 
53