controller.h 268 B

123456789101112
  1. #ifndef __CONTROLLER_H__
  2. #define __CONTROLLER_H__
  3. #include <vector>
  4. #include <utility>
  5. typedef std::pair<const char *, unsigned int> Workentry;
  6. typedef std::vector<Workentry> Worklist;
  7. int controller_main(const Worklist &worklist, unsigned short bindport);
  8. #endif