summaryrefslogtreecommitdiff
path: root/src/libaudtag/util.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libaudtag/util.h')
-rw-r--r--src/libaudtag/util.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/libaudtag/util.h b/src/libaudtag/util.h
index c102c02..9d9f03e 100644
--- a/src/libaudtag/util.h
+++ b/src/libaudtag/util.h
@@ -22,8 +22,6 @@
#include <stdint.h>
-#include <libaudcore/vfs.h>
-
enum {
GENRE_BLUES = 0,
GENRE_CLASSIC_ROCK,
@@ -157,21 +155,4 @@ const char *convert_numericgenre_to_text(int numericgenre);
uint32_t unsyncsafe32 (uint32_t x);
uint32_t syncsafe32 (uint32_t x);
-class TempFile
-{
-public:
- bool create ();
- bool copy_from (VFSFile & file, int64_t offset, int64_t size);
- bool replace (VFSFile & file);
-
- int fd ()
- { return m_fd; }
-
- ~TempFile ();
-
-private:
- String m_name;
- int m_fd = -1;
-};
-
#endif /* TAGUTIL_H */