public CLock(CMutex m_mutex) { this.m_mutex = m_mutex; m_haslock = false; Enter(); }
public CClientsHandler(List <CLight> lights) { this.m_lights = lights; this.m_socket = new CTcpServerSocket(); this.m_clients = new List <CClient>(); this.m_mutex = new CMutex(); }