summaryrefslogtreecommitdiff
path: root/include/util
diff options
context:
space:
mode:
authorAndreas Baumann <abaumann@yahoo.com>2012-09-07 17:14:55 +0200
committerAndreas Baumann <abaumann@yahoo.com>2012-09-07 17:14:55 +0200
commitdcc75cfbc4e5069038f0ec9929d1000f1630e382 (patch)
treefb9af6dbdc55f64726913a9634493bc12dd67219 /include/util
parente09d2127fc35d88bc94174514a2c79ad4400b9a7 (diff)
downloadcrawler-dcc75cfbc4e5069038f0ec9929d1000f1630e382.tar.gz
crawler-dcc75cfbc4e5069038f0ec9929d1000f1630e382.tar.bz2
moved TypeDetect.hpp to crawler include files
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