~charlesk/indicator-datetime/lp-1001595

« back to all changes in this revision

Viewing changes to include/datetime/timezone.h

  • Committer: CI bot
  • Author(s): Charles Kerr
  • Date: 2014-01-31 11:46:08 UTC
  • mfrom: (290.2.86 cpp)
  • Revision ID: ps-jenkins@lists.canonical.com-20140131114608-8sfzhimcfdywmk46
Finally land this. Other, still open bugs will be fixed in subsequent commits. Fixes: 793450, 1271484, 1274046

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright 2013 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_TIMEZONE_H
 
21
#define INDICATOR_DATETIME_TIMEZONE_H
 
22
 
 
23
#include <core/property.h>
 
24
 
 
25
#include <string>
 
26
 
 
27
namespace unity {
 
28
namespace indicator {
 
29
namespace datetime {
 
30
 
 
31
/** \brief Base a timezone, such as "America/Chicago". */
 
32
class Timezone
 
33
{
 
34
protected:
 
35
    Timezone() =default;
 
36
 
 
37
public:
 
38
    core::Property<std::string> timezone;
 
39
};
 
40
 
 
41
} // namespace datetime
 
42
} // namespace indicator
 
43
} // namespace unity
 
44
 
 
45
#endif // INDICATOR_DATETIME_TIMEZONE_H