NAMD
BroadcastClient.h
Go to the documentation of this file.
1 
7 #include "charm++.h"
8 
9 #ifndef _BCASTCLI_H
10 #define _BCASTCLI_H
11 
13 public:
14  int id;
15  BroadcastClient(int id);
17  void awaken(int id, int tag);
18 
19 protected:
20  void suspendFor(int tag);
21 
22  int suspended;
24  CthThread thread;
25 };
26 
27 #endif
28 
void awaken(int id, int tag)
void suspendFor(int tag)
BroadcastClient(int id)