~ubuntu-branches/ubuntu/quantal/kdepimlibs/quantal-proposed

« back to all changes in this revision

Viewing changes to kcal/period.h

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2006-09-06 22:45:39 UTC
  • Revision ID: james.westby@ubuntu.com-20060906224539-fiq8t03qdbqu7z3i
Tags: upstream-3.80.1
ImportĀ upstreamĀ versionĀ 3.80.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
    This file is part of the kcal library.
 
3
 
 
4
    Copyright (c) 2001-2003 Cornelius Schumacher <schumacher@kde.org>
 
5
 
 
6
    This library is free software; you can redistribute it and/or
 
7
    modify it under the terms of the GNU Library General Public
 
8
    License as published by the Free Software Foundation; either
 
9
    version 2 of the License, or (at your option) any later version.
 
10
 
 
11
    This library is distributed in the hope that it will be useful,
 
12
    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
14
    Library General Public License for more details.
 
15
 
 
16
    You should have received a copy of the GNU Library General Public License
 
17
    along with this library; see the file COPYING.LIB.  If not, write to
 
18
    the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 
19
    Boston, MA 02110-1301, USA.
 
20
*/
 
21
#ifndef KCAL_PERIOD_H
 
22
#define KCAL_PERIOD_H
 
23
 
 
24
#include <QDateTime>
 
25
#include "kcal.h"
 
26
 
 
27
#include "duration.h"
 
28
 
 
29
namespace KCal {
 
30
 
 
31
/**
 
32
  This class represents a period of time. The period can be defined by either a
 
33
  start time and an end time or by a start time and a duration.
 
34
*/
 
35
class KCAL_EXPORT Period
 
36
{
 
37
  public:
 
38
    Period();
 
39
    Period( const QDateTime &start, const QDateTime &end );
 
40
    Period( const QDateTime &start, const Duration &duration );
 
41
 
 
42
    /** Returns true if this element is smaller than the @param other one */
 
43
    bool operator<( const Period& other ) const;
 
44
 
 
45
    QDateTime start() const;
 
46
    QDateTime end() const;
 
47
    Duration duration();
 
48
 
 
49
    bool hasDuration()const;
 
50
 
 
51
  private:
 
52
    QDateTime mStart;
 
53
    QDateTime mEnd;
 
54
 
 
55
    bool mHasDuration;
 
56
 
 
57
    class Private;
 
58
    Private *d;
 
59
};
 
60
 
 
61
}
 
62
 
 
63
#endif