Logo AND Algorithmique Numérique Distribuée

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