Logo AND Algorithmique Numérique Distribuée

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