Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Remove bindings CXX from Simgrid
[simgrid.git] / examples / cxx / explicitDestination / Slave.hpp
diff --git a/examples/cxx/explicitDestination/Slave.hpp b/examples/cxx/explicitDestination/Slave.hpp
deleted file mode 100644 (file)
index d0a5607..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-#ifndef SLAVE_HPP
-#define SLAVE_HPP
-
-#include <MsgProcess.hpp>
-using namespace SimGrid::Msg;
-
-class Slave : public Process
-{
-       MSG_DECLARE_DYNAMIC(Slave);
-
-       public:
-       
-       // Default constructor.
-       Slave(){}
-       
-       // Destructor.
-       virtual ~Slave(){}
-       
-       int main(int argc, char** argv);
-               
-};
-
-
-#endif // !SLAVE_HPP