diff options
author | David Kalnischkies <kalnischkies@gmail.com> | 2011-12-10 20:03:49 +0100 |
---|---|---|
committer | David Kalnischkies <kalnischkies@gmail.com> | 2011-12-10 20:03:49 +0100 |
commit | 76a763e1f842543a53bc28db681d963d0fc4ae12 (patch) | |
tree | 9e61f14bdfbce67ea001fe293497c6d9205f380e /apt-pkg/contrib/fileutl.h | |
parent | 468720c59fcf48b20332cdb7b601b2b0d7cbbfbb (diff) |
* apt-pkg/contrib/fileutl.{h,cc}:
- implement a ModificationTime method for FileFd
Diffstat (limited to 'apt-pkg/contrib/fileutl.h')
-rw-r--r-- | apt-pkg/contrib/fileutl.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apt-pkg/contrib/fileutl.h b/apt-pkg/contrib/fileutl.h index 59a9d97e3..8f2d7a0a0 100644 --- a/apt-pkg/contrib/fileutl.h +++ b/apt-pkg/contrib/fileutl.h @@ -78,6 +78,7 @@ class FileFd unsigned long long Tell(); unsigned long long Size(); unsigned long long FileSize(); + time_t ModificationTime(); /* You want to use 'unsigned long long' if you are talking about a file to be able to support large files (>2 or >4 GB) properly. |