~charlesk/indicator-datetime/lp-1001595

« back to all changes in this revision

Viewing changes to include/datetime/engine.h

  • Committer: CI bot
  • Author(s): Charles Kerr
  • Date: 2014-03-14 17:37:09 UTC
  • mfrom: (312.6.1 no-eds-in-greeter)
  • Revision ID: ps-jenkins@lists.canonical.com-20140314173709-yx9vxgie504p0s2l
Don't use EDS if we're in the greeter. Fixes: 1256130

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright 2014 Canonical Ltd.
 
3
 *
 
4
 * This program is free software: you can redistribute it and/or modify it
 
5
 * under the terms of the GNU General Public License version 3, as published
 
6
 * by the Free Software Foundation.
 
7
 *
 
8
 * This program is distributed in the hope that it will be useful, but
 
9
 * WITHOUT ANY WARRANTY; without even the implied warranties of
 
10
 * MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
 
11
 * PURPOSE.  See the GNU General Public License for more details.
 
12
 *
 
13
 * You should have received a copy of the GNU General Public License along
 
14
 * with this program.  If not, see <http://www.gnu.org/licenses/>.
 
15
 *
 
16
 * Authors:
 
17
 *   Charles Kerr <charles.kerr@canonical.com>
 
18
 */
 
19
 
 
20
#ifndef INDICATOR_DATETIME_ENGINE__H
 
21
#define INDICATOR_DATETIME_ENGINE__H
 
22
 
 
23
#include <datetime/appointment.h>
 
24
#include <datetime/date-time.h>
 
25
#include <datetime/timezone.h>
 
26
 
 
27
#include <functional>
 
28
#include <vector>
 
29
 
 
30
namespace unity {
 
31
namespace indicator {
 
32
namespace datetime {
 
33
 
 
34
/****
 
35
*****
 
36
****/
 
37
 
 
38
/**
 
39
 * Class wrapper around the backend that generates appointments
 
40
 * 
 
41
 * @see EdsEngine
 
42
 * @see EdsPlanner
 
43
 */
 
44
class Engine
 
45
{
 
46
public:
 
47
    virtual ~Engine() =default;
 
48
 
 
49
    virtual void get_appointments(const DateTime& begin,
 
50
                                  const DateTime& end,
 
51
                                  const Timezone& default_timezone,
 
52
                                  std::function<void(const std::vector<Appointment>&)> appointment_func) =0;
 
53
 
 
54
    virtual core::Signal<>& changed() =0;
 
55
 
 
56
protected:
 
57
    Engine() =default;
 
58
};
 
59
 
 
60
/***
 
61
****
 
62
***/
 
63
 
 
64
} // namespace datetime
 
65
} // namespace indicator
 
66
} // namespace unity
 
67
 
 
68
#endif // INDICATOR_DATETIME_ENGINE__H