1/*
2 * Copyright 2011, Oliver Tappe <zooey@hirschkaefer.de>
3 * Copyright 2013, Rene Gollent, rene@gollent.com.
4 * Distributed under the terms of the MIT License.
5 */
6#include "JobStateListener.h"
7
8
9using BSupportKit::BJob;
10
11
12JobStateListener::JobStateListener()
13{
14}
15
16
17void
18JobStateListener::JobStarted(BJob* job)
19{
20}
21
22
23void
24JobStateListener::JobSucceeded(BJob* job)
25{
26	// TODO: notify user
27}
28
29
30void
31JobStateListener::JobFailed(BJob* job)
32{
33	// TODO: notify user
34}
35
36
37void
38JobStateListener::JobAborted(BJob* job)
39{
40	// TODO: notify user
41}
42