summaryrefslogtreecommitdiff
path: root/include/util
diff options
context:
space:
mode:
Diffstat (limited to 'include/util')
-rw-r--r--include/util/TypeDetect.hpp15
1 files changed, 0 insertions, 15 deletions
diff --git a/include/util/TypeDetect.hpp b/include/util/TypeDetect.hpp
deleted file mode 100644
index 7db714b..0000000
--- a/include/util/TypeDetect.hpp
+++ /dev/null
@@ -1,15 +0,0 @@
-#ifndef __TYPE_DETECTION_H
-#define __TYPE_DETECTION_H
-
-#include "RewindInputStream.hpp"
-#include "MIMEType.hpp"
-
-class TypeDetect
-{
- public:
- virtual ~TypeDetect( ) { };
-
- virtual MIMEType detect( RewindInputStream *s ) = 0;
-};
-
-#endif