~ubuntu-branches/ubuntu/saucy/libusermetrics/saucy

« back to all changes in this revision

Viewing changes to src/libusermetricsoutput/DateFactoryImpl.h

  • Committer: Package Import Robot
  • Author(s): Ubuntu daily release
  • Date: 2013-06-19 02:02:14 UTC
  • Revision ID: package-import@ubuntu.com-20130619020214-c70h0gi40bizaiq8
Tags: upstream-1.0.1daily13.06.19
ImportĀ upstreamĀ versionĀ 1.0.1daily13.06.19

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2013 Canonical, Ltd.
 
3
 *
 
4
 * This library is free software; you can redistribute it and/or modify it under
 
5
 * the terms of version 3 of the GNU Lesser General Public License as published
 
6
 * by the Free Software Foundation.
 
7
 *
 
8
 * This library is distributed in the hope that it will be useful, but WITHOUT
 
9
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 
10
 * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
 
11
 * details.
 
12
 *
 
13
 * You should have received a copy of the GNU Lesser General Public License
 
14
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
15
 *
 
16
 * Author: Pete Woods <pete.woods@canonical.com>
 
17
 */
 
18
 
 
19
#ifndef USERMETRICSOUTPUT_DATEFACTORYIMPL_H_
 
20
#define USERMETRICSOUTPUT_DATEFACTORYIMPL_H_
 
21
 
 
22
#include <DateFactory.h>
 
23
 
 
24
namespace UserMetricsOutput {
 
25
 
 
26
class DateFactoryImpl: public DateFactory {
 
27
public:
 
28
        DateFactoryImpl();
 
29
 
 
30
        virtual ~DateFactoryImpl();
 
31
 
 
32
        virtual QDate currentDate() const;
 
33
};
 
34
 
 
35
}
 
36
 
 
37
#endif // USERMETRICSOUTPUT_DATEFACTORYIMPL_H_