-
Notifications
You must be signed in to change notification settings - Fork 0
/
bookmark.h
44 lines (31 loc) · 865 Bytes
/
bookmark.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/*
ZHSC
bookmark.h
v 0.0.1
2003/06/23
Copyright (C) 2003 Cavendish
http://www.qiliang.net/software/zhsc.html
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
*/
#ifndef BOOKMARK_H
#define BOOKMARK_H
#include <qmap.h>
#include <qstring.h>
#include <qtable.h>
#include <qvaluelist.h>
#include <qptrlist.h>
typedef QMap<int, QString> StringMap;
typedef struct
{
QString dynastyno;
QString poetno;
QString poemno;
QString content;
}Bookmark;
typedef QValueList<Bookmark> BookmarkList;
typedef QPtrList<QCheckTableItem> CTIPList;
#endif //BOOKMARK_H