-
-
Notifications
You must be signed in to change notification settings - Fork 224
Expand file tree
/
Copy pathtdirectview.cpp
More file actions
34 lines (25 loc) · 830 Bytes
/
Copy pathtdirectview.cpp
File metadata and controls
34 lines (25 loc) · 830 Bytes
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
/* Copyright (c) 2010-2019, AOYAMA Kazuharu
* All rights reserved.
*
* This software may be used and distributed according to the terms of
* the New BSD License, which is incorporated herein by reference.
*/
#include <TDirectView>
#include <TActionController>
#include <TSession>
const TSession &TDirectView::session() const
{
return controller()->session();
}
TSession &TDirectView::session()
{
return actionController->session();
}
bool TDirectView::addCookie(const TCookie &cookie)
{
return actionController->addCookie(cookie);
}
bool TDirectView::addCookie(const QByteArray &name, const QByteArray &value, const QDateTime &expire, const QString &path, const QString &domain, bool secure, bool httpOnly)
{
return actionController->addCookie(name, value, expire, path, domain, secure, httpOnly);
}