Logo AND Algorithmique Numérique Distribuée

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