Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
All of the examples use now the StringHelp class to simplify the string manipulation.
[simgrid.git] / examples / cxx / suspend / LazyGuy.hpp
1 #ifndef LAZYGUY_HPP\r
2 #define LAZYGUY_HPP\r
3 \r
4 #include <Process.hpp>\r
5 using namespace SimGrid::Msg;\r
6 \r
7 class LazyGuy : public Process\r
8 {\r
9         MSG_DECLARE_DYNAMIC(LazyGuy);\r
10 \r
11         public:\r
12         \r
13         // Default constructor.\r
14         LazyGuy(){}\r
15         \r
16         // Destructor.\r
17         virtual ~LazyGuy(){}\r
18         \r
19         LazyGuy(const Host& rHost,const char* name)\r
20         throw(NullPointerException)\r
21         :Process(rHost, name){}\r
22         \r
23         int main(int argc, char** argv);\r
24                 \r
25 };\r
26 \r
27 \r
28 #endif // !LAZYGUY_HPP