From e5804f2cb929083713c0082f39182a858c082587 Mon Sep 17 00:00:00 2001 From: Pixel Date: Wed, 26 Oct 2011 11:47:38 -0700 Subject: Protecting the IO class a bit more, and adding the raw filename paradigm for at least the Input class. --- includes/Input.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'includes/Input.h') diff --git a/includes/Input.h b/includes/Input.h index 518db39..9d45baa 100644 --- a/includes/Input.h +++ b/includes/Input.h @@ -14,9 +14,11 @@ class Input : public SeekableHandle { virtual const char * getName(); virtual off_t getSize(); virtual time_t getMTime(); + const char * getFName() { return m_fname.to_charp(); } private: int m_fd; String m_name; + String m_fname; off_t m_size; time_t m_mtime; }; -- cgit v1.2.3