From 8ae349b49e16064e4d84b6cfd256e3ca7fb0cd60 Mon Sep 17 00:00:00 2001 From: Pixel Date: Mon, 10 Oct 2011 20:31:41 -0700 Subject: Adding the 'stats' call to Input. Also fixing a bug with the Printer - va_args are vicious. --- includes/Input.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'includes/Input.h') diff --git a/includes/Input.h b/includes/Input.h index 418b018..7f801f6 100644 --- a/includes/Input.h +++ b/includes/Input.h @@ -10,9 +10,13 @@ class Input : public SeekableHandle { virtual void close() throw (GeneralException); virtual bool isClosed(); virtual const char * getName(); + virtual off_t getSize(); + virtual time_t getMTime(); private: int m_fd; String m_name; + off_t m_size; + time_t m_mtime; }; }; -- cgit v1.2.3