Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
last changes of cpp wrappers examples
[simgrid.git] / examples / cxx / ping_pong / Receiver.hpp
1 #ifndef RECEIVER_HPP
2 #define RECEIVER_HPP
3
4 #include <Process.hpp>
5 using namespace SimGrid::Msg;
6         
7 class Receiver : public Process
8 {
9         MSG_DECLARE_DYNAMIC(Receiver);
10
11         public:
12         
13         // Default constructor.
14         Receiver(){}
15         
16         // Destructor.
17         virtual ~Receiver(){}
18         
19         int main(int argc, char** argv);
20                 
21 };
22
23
24 #endif // !RECEIVER_HPP
25