Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Let simgrid.dtd to be accessible from the web in order to enable automatic validation...
[simgrid.git] / examples / cxx / ping_pong / Sender.hpp
1 #ifndef SENDER_HPP
2 #define SENDER_HPP
3
4 #include <MsgProcess.hpp>
5 using namespace SimGrid::Msg;
6
7 class Sender : public Process
8 {
9         MSG_DECLARE_DYNAMIC(Sender);
10
11         public:
12         
13         // Default constructor.
14         Sender(){}
15         
16         // Destructor.
17         virtual ~Sender(){}
18         
19         int main(int argc, char** argv);
20                 
21 };
22
23
24 #endif // !SENDER_HPP
25