BioCMAMC-ST
factory.hpp
1#ifndef __CORE_LOAD_BALANCER_FACTORY_HPP__
2#define __CORE_LOAD_BALANCER_FACTORY_HPP__
3
4#include <load_balancing/iload_balancer.hpp>
5
6std::unique_ptr<ILoadBalancer> lb_factory(uint32_t s);
7
8#endif