crossroads

Git mirror of https://crossroads.e-tunity.com/
git clone git://git.finwo.net/app/crossroads
Log | Files | Refs | LICENSE

algorithm (336B)


      1 #ifndef _ALGORITHM_
      2 #define _ALGORITHM_
      3 
      4 #include "ThreadsAndMutexes/thread/thread"
      5 #include "backendvector/backendvector"
      6 #include "profiler/profiler"
      7 
      8 class Algorithm: public Thread {
      9 public:
     10     virtual ~Algorithm();
     11     virtual unsigned target(struct in_addr clientip,
     12     	    	     	    BackendVector &targetlist) = 0;
     13 };
     14 
     15 #endif