blob: 827fc594e4dc052e91e185711c1ef61e6dff5a3f (
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
|
/*
* This library is free software: you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation.
*
* This library is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
* for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this library. If not, see <http://www.gnu.org/licenses/>.
*/
#include "evolution-data-server-config.h"
#include "session.h"
G_DEFINE_TYPE (CamelTestSession, camel_test_session, CAMEL_TYPE_SESSION)
static void
camel_test_session_class_init (CamelTestSessionClass *class)
{
}
static void
camel_test_session_init (CamelTestSession *test_session)
{
}
CamelSession *
camel_test_session_new (const gchar *path)
{
return g_object_new (
CAMEL_TYPE_TEST_SESSION,
"user-data-dir", path, NULL);
}
|