X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/d084d9ae9f7bcd7f7d1926e7eeae921dbad49273..80270bc96f3fd1d1f14b3ef539b73ad2eb0017de:/projects/traffcounter/user_tc_iface.h?ds=inline diff --git a/projects/traffcounter/user_tc_iface.h b/projects/traffcounter/user_tc_iface.h deleted file mode 100644 index d70034a8..00000000 --- a/projects/traffcounter/user_tc_iface.h +++ /dev/null @@ -1,30 +0,0 @@ -#ifndef __USER_TC_IFACE_H__ -#define __USER_TC_IFACE_H__ - -#ifdef HAVE_STDINT - #include -#else - #ifdef HAVE_INTTYPES - #include - #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