489706e510e5ae053598a48a154891c56028c562
[clinton/bobotpp.git] / source / ShitList.H
1 // ShitList.H -*- C++ -*-
2 // Copyright (c) 1997, 1998 Etienne BERNARD
3 // Copyright (c) 2002 Clinton Ebadi
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 // 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18
19 #ifndef SHITLIST_H
20 #define SHITLIST_H
21
22 #include <list>
23 #include <ctime>
24
25 #include "String.H"
26 #include "ShitEntry.H"
27
28 class UserCommands;
29
30 class ShitList {
31 String listFileName;
32 std::list<ShitEntry *> l;
33
34 public:
35 ShitList(String);
36 ~ShitList();
37
38 void addShit(String, String, int, std::time_t, String);
39 void delShit(String, String);
40
41 ShitEntry * getShit(String, String);
42
43 void read();
44 void save();
45 void clear();
46
47 friend class UserCommands;
48 };
49
50 #endif