File: session.c

package info (click to toggle)
evolution-data-server 3.4.4-3%2Bdeb7u1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 47,788 kB
  • sloc: ansic: 248,622; sh: 12,008; makefile: 2,874; xml: 428; perl: 204; python: 30
file content (25 lines) | stat: -rw-r--r-- 441 bytes parent folder | download | duplicates (3)
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
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#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);
}