]> git.cworth.org Git - apitrace/blobdiff - trace_file.hpp
Remove unused files.
[apitrace] / trace_file.hpp
index 7214d7826db29d183c9695208e6e1981cd525b2a..4b1b70ddad6f6bd886ac7aa51c28f5604b281faf 100644 (file)
@@ -59,8 +59,6 @@ public:
     bool isOpened() const;
     File::Mode mode() const;
 
-    std::string filename() const;
-
     bool open(const std::string &filename, File::Mode mode);
     bool write(const void *buffer, size_t length);
     bool read(void *buffer, size_t length);
@@ -84,7 +82,6 @@ protected:
     virtual int rawPercentRead() = 0;
 
 protected:
-    std::string m_filename;
     File::Mode m_mode;
     bool m_isOpened;
 };
@@ -99,11 +96,6 @@ inline File::Mode File::mode() const
     return m_mode;
 }
 
-inline std::string File::filename() const
-{
-    return m_filename;
-}
-
 inline bool File::open(const std::string &filename, File::Mode mode)
 {
     if (m_isOpened) {