]> git.stg.codes - stg.git/blobdiff - projects/traffcounter/user_tc_iface.h
Removed obsolete stuff.
[stg.git] / projects / traffcounter / user_tc_iface.h
diff --git a/projects/traffcounter/user_tc_iface.h b/projects/traffcounter/user_tc_iface.h
deleted file mode 100644 (file)
index d70034a..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-#ifndef __USER_TC_IFACE_H__
-#define __USER_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
-
-#include "tc_packets.h"
-
-namespace STG
-{
-
-    class IUSER_TC
-    {
-    public:
-        virtual ~IUSER_TC() {};
-        virtual void AddIP(uint32_t) = 0;
-        virtual void DeleteIP(uint32_t, TRAFF_DATA *) = 0;
-        virtual void GetIP(uint32_t, TRAFF_DATA *) = 0;
-    };
-
-}
-
-#endif