Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Remove bindings CXX from Simgrid
[simgrid.git] / examples / cxx / suspend / LazyGuy.hpp
diff --git a/examples/cxx/suspend/LazyGuy.hpp b/examples/cxx/suspend/LazyGuy.hpp
deleted file mode 100644 (file)
index e7ffdcb..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-#ifndef LAZYGUY_HPP
-#define LAZYGUY_HPP
-
-#include <Process.hpp>
-using namespace SimGrid::Msg;
-
-class LazyGuy : public Process
-{
-       // Not needed : DreamMaster directly constructs the object
-       // MSG_DECLARE_DYNAMIC(LazyGuy);
-
-       public:
-       
-       // Default constructor.
-       LazyGuy(){}
-       
-       // Destructor.
-       virtual ~LazyGuy(){}
-       
-       LazyGuy(const Host& rHost,const char* name)
-       throw(NullPointerException)
-       :Process(rHost, name){}
-       
-       int main(int argc, char** argv);
-               
-};
-
-
-#endif // !LAZYGUY_HPP
-