blob: 0875a794582e763c560a0b2a863be5b49ae20fe3 (
plain)
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
|
#include "konq_historycomm.h"
bool KonqHistoryEntry::marshalURLAsStrings;
// QDataStream operators (read and write a KonqHistoryEntry
// from/into a QDataStream)
QDataStream& operator<< (QDataStream& s, const KonqHistoryEntry& e) {
if (KonqHistoryEntry::marshalURLAsStrings)
s << e.url.url();
else
s << e.url;
s << e.typedURL;
s << e.title;
s << e.numberOfTimesVisited;
s << e.firstVisited;
s << e.lastVisited;
return s;
}
QDataStream& operator>> (QDataStream& s, KonqHistoryEntry& e) {
if (KonqHistoryEntry::marshalURLAsStrings)
{
QString url;
s >> url;
e.url = url;
}
else
{
s>>e.url;
}
s >> e.typedURL;
s >> e.title;
s >> e.numberOfTimesVisited;
s >> e.firstVisited;
s >> e.lastVisited;
return s;
}
|