~ubuntu-branches/ubuntu/saucy/filezilla/saucy-proposed

« back to all changes in this revision

Viewing changes to src/include/timeex.h

  • Committer: Package Import Robot
  • Author(s): Adrien Cunin
  • Date: 2012-12-07 17:17:17 UTC
  • mfrom: (1.1.31)
  • Revision ID: package-import@ubuntu.com-20121207171717-nt6as62u4pa1uv11
Tags: 3.6.0.2-1ubuntu1
* Merge from Debian experimental. Remaining Ubuntu change:
   - Added debian/patches/11_use-decimal-si-by-default.patch in order to
     comply with UnitsPolicy

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#ifndef __TIMEEX_H__
2
2
#define __TIMEEX_H__
3
3
 
4
 
/* If called multiple times in a row, wxDateTime::Now may return the same 
 
4
/* If called multiple times in a row, wxDateTime::Now may return the same
5
5
 * time. This causes problems with the cache logic. This class implements
6
6
 * an extended time class in wich Now() never returns the same value.
7
7
 */
20
20
 
21
21
        bool IsValid() const { return m_time.IsValid(); }
22
22
 
23
 
        bool operator < (const CTimeEx& op) const; 
 
23
        bool operator < (const CTimeEx& op) const;
24
24
        bool operator <= (const CTimeEx& op) const;
25
 
        bool operator > (const CTimeEx& op) const; 
 
25
        bool operator > (const CTimeEx& op) const;
26
26
        bool operator >= (const CTimeEx& op) const;
27
27
        bool operator == (const CTimeEx& op) const;
28
28