/* * client.h * * Simulation of Chandy-Lamport algorithm * * This file is a part of Distributed Systems term thesis * Department KIV, ZCU Plzen * Author: Martin Sloup, msloup@students.zcu.cz */ #ifndef CLIENT_H_ #define CLIENT_H_ #include extern void client_start(); void client_parse_and_connect(const char *filename); extern std::vector clients; #endif /* CLIENT_H_ */