]> git.stg.codes - stg.git/blobdiff - projects/traffcounter/capturer_tc_iface.h
Removed obsolete stuff.
[stg.git] / projects / traffcounter / capturer_tc_iface.h
diff --git a/projects/traffcounter/capturer_tc_iface.h b/projects/traffcounter/capturer_tc_iface.h
deleted file mode 100644 (file)
index 0b51dfc..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-#ifndef __CAPTURER_TC_IFACE_H__
-#define __CAPTURER_TC_IFACE_H__
-
-#ifdef HAVE_STDINT
-    #include <stdint.h>
-#else
-    #ifdef HAVE_INTTYPES
-        #include <inttypes.h>
-    #else
-        #error "You need either stdint.h or inttypes.h to compile this!"
-    #endif
-#endif
-
-namespace STG
-{
-
-    class ICAPTURER_TC
-    {
-    public:
-        virtual ~ICAPTURER_TC() {};
-        virtual void AddPacket(const iphdr &, uint16_t, uint16_t) = 0;
-    };
-
-}
-
-#endif